[−][src]Struct gstreamer::Bus
The Bus
is an object responsible for delivering Message
packets in
a first-in first-out way from the streaming threads (see Task
) to the
application.
Since the application typically only wants to deal with delivery of these messages from one thread, the GstBus will marshall the messages between different threads. This is important since the actual streaming of media is done in another thread than the application.
The GstBus provides support for glib::Source
based notifications. This makes it
possible to handle the delivery in the glib mainloop.
The glib::Source
callback function Bus::async_signal_func
can be used to
convert all bus messages into signal emissions.
A message is posted on the bus with the Bus::post
method. With the
Bus::peek
and Bus::pop
methods one can look at or retrieve a
previously posted message.
The bus can be polled with the Bus::poll
method. This methods blocks
up to the specified timeout value until one of the specified messages types
is posted on the bus. The application can then Bus::pop
the messages
from the bus to handle them.
Alternatively the application can register an asynchronous bus function
using Bus::add_watch_full
or Bus::add_watch
. This function will
install a glib::Source
in the default glib main loop and will deliver messages
a short while after they have been posted. Note that the main loop should
be running for the asynchronous callbacks.
It is also possible to get messages from the bus without any thread
marshalling with the Bus::set_sync_handler
method. This makes it
possible to react to a message in the same thread that posted the
message on the bus. This should only be used if the application is able
to deal with messages from different threads.
Every Pipeline
has one bus.
Note that a Pipeline
will set its bus into flushing state when changing
from READY to NULL state.
Implements
Implementations
impl Bus
[src]
pub fn new() -> Bus
[src]
pub fn add_signal_watch(&self)
[src]
Adds a bus signal watch to the default main context with the default priority
(G_PRIORITY_DEFAULT
). It is also possible to use a non-default
main context set up using glib::MainContext::push_thread_default
(before
one had to create a bus watch source and attach it to the desired main
context 'manually').
After calling this statement, the bus will emit the "message" signal for each message posted on the bus.
This function may be called multiple times. To clean up, the caller is
responsible for calling Bus::remove_signal_watch
as many times as this
function is called.
MT safe.
pub fn disable_sync_message_emission(&self)
[src]
Instructs GStreamer to stop emitting the "sync-message" signal for this bus.
See Bus::enable_sync_message_emission
for more information.
In the event that multiple pieces of code have called
Bus::enable_sync_message_emission
, the sync-message emissions will only
be stopped after all calls to Bus::enable_sync_message_emission
were
"cancelled" by calling this function. In this way the semantics are exactly
the same as GstObjectExt::ref
that which calls enable should also call
disable.
MT safe.
pub fn enable_sync_message_emission(&self)
[src]
Instructs GStreamer to emit the "sync-message" signal after running the bus's sync handler. This function is here so that code can ensure that they can synchronously receive messages without having to affect what the bin's sync handler is.
This function may be called multiple times. To clean up, the caller is
responsible for calling Bus::disable_sync_message_emission
as many times
as this function is called.
While this function looks similar to Bus::add_signal_watch
, it is not
exactly the same -- this function enables synchronous emission of
signals when messages arrive; Bus::add_signal_watch
adds an idle callback
to pop messages off the bus asynchronously. The sync-message signal
comes from the thread of whatever object posted the message; the "message"
signal is marshalled to the main thread via the main loop.
MT safe.
pub fn have_pending(&self) -> bool
[src]
Check if there are pending messages on the bus that should be handled.
Returns
true
if there are messages on the bus to be handled, false
otherwise.
MT safe.
pub fn peek(&self) -> Option<Message>
[src]
Peek the message on the top of the bus' queue. The message will remain on the bus' message queue. A reference is returned, and needs to be unreffed by the caller.
Returns
the Message
that is on the
bus, or None
if the bus is empty.
MT safe.
pub fn pop(&self) -> Option<Message>
[src]
Get a message from the bus.
Returns
the Message
that is on the
bus, or None
if the bus is empty. The message is taken from
the bus and needs to be unreffed with Message::unref
after
usage.
MT safe.
pub fn post(&self, message: &Message) -> Result<(), BoolError>
[src]
Post a message on the given bus. Ownership of the message is taken by the bus.
message
the Message
to post
Returns
true
if the message could be posted, false
if the bus is flushing.
MT safe.
pub fn remove_signal_watch(&self)
[src]
Removes a signal watch previously added with Bus::add_signal_watch
.
MT safe.
pub fn remove_watch(&self) -> Result<(), BoolError>
[src]
Removes an installed bus watch from self
.
Returns
true
on success or false
if self
has no event source.
pub fn set_flushing(&self, flushing: bool)
[src]
If flushing
, flush out and unref any messages queued in the bus. Releases
references to the message origin objects. Will flush future messages until
Bus::set_flushing
sets flushing
to false
.
MT safe.
flushing
whether or not to flush the bus
pub fn timed_pop(&self, timeout: ClockTime) -> Option<Message>
[src]
Get a message from the bus, waiting up to the specified timeout.
If timeout
is 0, this function behaves like Bus::pop
. If timeout
is
GST_CLOCK_TIME_NONE
, this function will block forever until a message was
posted on the bus.
timeout
a timeout
Returns
the Message
that is on the
bus after the specified timeout or None
if the bus is empty
after the timeout expired. The message is taken from the bus
and needs to be unreffed with Message::unref
after usage.
MT safe.
pub fn connect_message<F: Fn(&Bus, &Message) + Send + 'static>(
&self,
f: F
) -> SignalHandlerId
[src]
&self,
f: F
) -> SignalHandlerId
A message has been posted on the bus. This signal is emitted from a GSource added to the mainloop. this signal will only be emitted when there is a mainloop running.
message
the message that has been posted asynchronously
pub fn connect_sync_message<F: Fn(&Bus, &Message) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId
[src]
&self,
f: F
) -> SignalHandlerId
A message has been posted on the bus. This signal is emitted from the thread that posted the message so one has to be careful with locking.
This signal will not be emitted by default, you have to call
Bus::enable_sync_message_emission
before.
message
the message that has been posted synchronously
impl Bus
[src]
pub fn add_signal_watch_full(&self, priority: Priority)
[src]
Adds a bus signal watch to the default main context with the given priority
(e.g. G_PRIORITY_DEFAULT
). It is also possible to use a non-default main
context set up using glib::MainContext::push_thread_default
(before one had to create a bus watch source and attach it to the desired
main context 'manually').
After calling this statement, the bus will emit the "message" signal for each message posted on the bus when the main loop is running.
This function may be called multiple times. To clean up, the caller is
responsible for calling Bus::remove_signal_watch
as many times as this
function is called.
There can only be a single bus watch per bus, you must remove any signal watch before you can set another type of watch.
MT safe.
priority
The priority of the watch.
pub fn create_watch<F>(
&self,
name: Option<&str>,
priority: Priority,
func: F
) -> Source where
F: FnMut(&Bus, &Message) -> Continue + Send + 'static,
[src]
&self,
name: Option<&str>,
priority: Priority,
func: F
) -> Source where
F: FnMut(&Bus, &Message) -> Continue + Send + 'static,
Create watch for this bus. The GSource will be dispatched whenever a message is on the bus. After the GSource is dispatched, the message is popped off the bus and unreffed.
Returns
a glib::Source
that can be added to a mainloop.
pub fn add_watch<F>(&self, func: F) -> Result<SourceId, BoolError> where
F: FnMut(&Bus, &Message) -> Continue + Send + 'static,
[src]
F: FnMut(&Bus, &Message) -> Continue + Send + 'static,
Adds a bus watch to the default main context with the default priority
(G_PRIORITY_DEFAULT
). It is also possible to use a non-default main
context set up using glib::MainContext::push_thread_default
(before
one had to create a bus watch source and attach it to the desired main
context 'manually').
This function is used to receive asynchronous messages in the main loop. There can only be a single bus watch per bus, you must remove it before you can set a new one.
The bus watch will only work if a GLib main loop is being run.
The watch can be removed using Bus::remove_watch
or by returning false
from func
. If the watch was added to the default main context it is also
possible to remove the watch using glib::Source::remove
.
The bus watch will take its own reference to the self
, so it is safe to unref
self
using GstObjectExt::unref
after setting the bus watch.
MT safe.
func
A function to call when a message is received.
user_data
user data passed to func
.
Returns
The event source id or 0 if self
already got an event source.
pub fn add_watch_local<F>(&self, func: F) -> Result<SourceId, BoolError> where
F: FnMut(&Bus, &Message) -> Continue + 'static,
[src]
F: FnMut(&Bus, &Message) -> Continue + 'static,
pub fn set_sync_handler<F>(&self, func: F) where
F: Fn(&Bus, &Message) -> BusSyncReply + Send + Sync + 'static,
[src]
F: Fn(&Bus, &Message) -> BusSyncReply + Send + Sync + 'static,
Sets the synchronous handler on the bus. The function will be called every time a new message is posted on the bus. Note that the function will be called in the same thread context as the posting object. This function is usually only called by the creator of the bus. Applications should handle messages asynchronously using the gst_bus watch and poll functions.
Before 1.16.3 it was not possible to replace an existing handler and
clearing an existing handler with None
was not thread-safe.
func
The handler function to install
user_data
User data that will be sent to the handler function.
notify
called when user_data
becomes unused
pub fn unset_sync_handler(&self)
[src]
pub fn iter(&self) -> Iter<'_>ⓘ
[src]
pub fn iter_timed(&self, timeout: ClockTime) -> Iter<'_>ⓘ
[src]
pub fn iter_filtered<'a>(
&'a self,
msg_types: &'a [MessageType]
) -> impl Iterator<Item = Message> + 'a
[src]
&'a self,
msg_types: &'a [MessageType]
) -> impl Iterator<Item = Message> + 'a
pub fn iter_timed_filtered<'a>(
&'a self,
timeout: ClockTime,
msg_types: &'a [MessageType]
) -> impl Iterator<Item = Message> + 'a
[src]
&'a self,
timeout: ClockTime,
msg_types: &'a [MessageType]
) -> impl Iterator<Item = Message> + 'a
pub fn timed_pop_filtered(
&self,
timeout: ClockTime,
msg_types: &[MessageType]
) -> Option<Message>
[src]
&self,
timeout: ClockTime,
msg_types: &[MessageType]
) -> Option<Message>
Get a message from the bus whose type matches the message type mask types
,
waiting up to the specified timeout (and discarding any messages that do not
match the mask provided).
If timeout
is 0, this function behaves like Bus::pop_filtered
. If
timeout
is GST_CLOCK_TIME_NONE
, this function will block forever until a
matching message was posted on the bus.
timeout
a timeout in nanoseconds, or GST_CLOCK_TIME_NONE to wait forever
types
message types to take into account, GST_MESSAGE_ANY for any type
Returns
a Message
matching the
filter in types
, or None
if no matching message was found on
the bus until the timeout expired. The message is taken from
the bus and needs to be unreffed with Message::unref
after
usage.
MT safe.
pub fn pop_filtered(&self, msg_types: &[MessageType]) -> Option<Message>
[src]
Get a message matching type_
from the bus. Will discard all messages on
the bus that do not match type_
and that have been posted before the first
message that does match type_
. If there is no message matching type_
on
the bus, all messages will be discarded. It is not possible to use message
enums beyond MessageType::Extended
in the events
mask.
types
message types to take into account
Returns
the next Message
matching
type_
that is on the bus, or None
if the bus is empty or there
is no message matching type_
. The message is taken from the bus
and needs to be unreffed with Message::unref
after usage.
MT safe.
pub fn stream(&self) -> BusStream
[src]
pub fn stream_filtered<'a>(
&self,
message_types: &'a [MessageType]
) -> impl Stream<Item = Message> + Unpin + Send + 'a
[src]
&self,
message_types: &'a [MessageType]
) -> impl Stream<Item = Message> + Unpin + Send + 'a
Trait Implementations
impl Clone for Bus
[src]
impl Debug for Bus
[src]
impl Default for Bus
[src]
impl Eq for Bus
[src]
impl Hash for Bus
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl IsA<Object> for Bus
[src]
impl Ord for Bus
[src]
fn cmp(&self, other: &Bus) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl<T: ObjectType> PartialEq<T> for Bus
[src]
impl<T: ObjectType> PartialOrd<T> for Bus
[src]
fn partial_cmp(&self, other: &T) -> Option<Ordering>
[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Send for Bus
[src]
impl StaticType for Bus
[src]
fn static_type() -> Type
[src]
impl Sync for Bus
[src]
impl UnixBusExtManual for Bus
[src]
fn get_pollfd(&self) -> RawFd
[src]
impl WindowsBusExtManual for Bus
[src]
fn get_pollfd(&self) -> RawHandle
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<Super, Sub> CanDowncast<Sub> for Super where
Sub: IsA<Super>,
Super: IsA<Super>,
[src]
Sub: IsA<Super>,
Super: IsA<Super>,
impl<T> Cast for T where
T: ObjectType,
[src]
T: ObjectType,
fn upcast<T>(self) -> T where
Self: IsA<T>,
T: ObjectType,
[src]
Self: IsA<T>,
T: ObjectType,
fn upcast_ref<T>(&self) -> &T where
Self: IsA<T>,
T: ObjectType,
[src]
Self: IsA<T>,
T: ObjectType,
fn downcast<T>(self) -> Result<T, Self> where
Self: CanDowncast<T>,
T: ObjectType,
[src]
Self: CanDowncast<T>,
T: ObjectType,
fn downcast_ref<T>(&self) -> Option<&T> where
Self: CanDowncast<T>,
T: ObjectType,
[src]
Self: CanDowncast<T>,
T: ObjectType,
fn dynamic_cast<T>(self) -> Result<T, Self> where
T: ObjectType,
[src]
T: ObjectType,
fn dynamic_cast_ref<T>(&self) -> Option<&T> where
T: ObjectType,
[src]
T: ObjectType,
unsafe fn unsafe_cast<T>(self) -> T where
T: ObjectType,
[src]
T: ObjectType,
unsafe fn unsafe_cast_ref<T>(&self) -> &T where
T: ObjectType,
[src]
T: ObjectType,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ObjectExt for T where
T: ObjectType,
[src]
T: ObjectType,
fn is<U>(&self) -> bool where
U: StaticType,
[src]
U: StaticType,
fn get_type(&self) -> Type
[src]
fn get_object_class(&self) -> &ObjectClass
[src]
fn set_properties(
&self,
property_values: &[(&str, &dyn ToValue)]
) -> Result<(), BoolError>
[src]
&self,
property_values: &[(&str, &dyn ToValue)]
) -> Result<(), BoolError>
fn set_property<'a, N>(
&self,
property_name: N,
value: &dyn ToValue
) -> Result<(), BoolError> where
N: Into<&'a str>,
[src]
&self,
property_name: N,
value: &dyn ToValue
) -> Result<(), BoolError> where
N: Into<&'a str>,
fn get_property<'a, N>(&self, property_name: N) -> Result<Value, BoolError> where
N: Into<&'a str>,
[src]
N: Into<&'a str>,
unsafe fn set_qdata<QD>(&self, key: Quark, value: QD) where
QD: 'static,
[src]
QD: 'static,
unsafe fn get_qdata<QD>(&self, key: Quark) -> Option<&QD> where
QD: 'static,
[src]
QD: 'static,
unsafe fn steal_qdata<QD>(&self, key: Quark) -> Option<QD> where
QD: 'static,
[src]
QD: 'static,
unsafe fn set_data<QD>(&self, key: &str, value: QD) where
QD: 'static,
[src]
QD: 'static,
unsafe fn get_data<QD>(&self, key: &str) -> Option<&QD> where
QD: 'static,
[src]
QD: 'static,
unsafe fn steal_data<QD>(&self, key: &str) -> Option<QD> where
QD: 'static,
[src]
QD: 'static,
fn block_signal(&self, handler_id: &SignalHandlerId)
[src]
fn unblock_signal(&self, handler_id: &SignalHandlerId)
[src]
fn stop_signal_emission(&self, signal_name: &str)
[src]
fn disconnect(&self, handler_id: SignalHandlerId)
[src]
fn connect_notify<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId where
F: 'static + Send + Sync + Fn(&T, &ParamSpec),
[src]
F: 'static + Send + Sync + Fn(&T, &ParamSpec),
unsafe fn connect_notify_unsafe<F>(
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId where
F: Fn(&T, &ParamSpec),
[src]
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId where
F: Fn(&T, &ParamSpec),
fn notify<'a, N>(&self, property_name: N) where
N: Into<&'a str>,
[src]
N: Into<&'a str>,
fn notify_by_pspec(&self, pspec: &ParamSpec)
[src]
fn has_property<'a, N>(&self, property_name: N, type_: Option<Type>) -> bool where
N: Into<&'a str>,
[src]
N: Into<&'a str>,
fn get_property_type<'a, N>(&self, property_name: N) -> Option<Type> where
N: Into<&'a str>,
[src]
N: Into<&'a str>,
fn find_property<'a, N>(&self, property_name: N) -> Option<ParamSpec> where
N: Into<&'a str>,
[src]
N: Into<&'a str>,
fn list_properties(&self) -> Vec<ParamSpec>
[src]
fn connect<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,
N: Into<&'a str>,
[src]
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,
N: Into<&'a str>,
fn connect_local<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + 'static,
N: Into<&'a str>,
[src]
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + 'static,
N: Into<&'a str>,
unsafe fn connect_unsafe<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value>,
N: Into<&'a str>,
[src]
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value>,
N: Into<&'a str>,
fn emit<'a, N>(
&self,
signal_name: N,
args: &[&dyn ToValue]
) -> Result<Option<Value>, BoolError> where
N: Into<&'a str>,
[src]
&self,
signal_name: N,
args: &[&dyn ToValue]
) -> Result<Option<Value>, BoolError> where
N: Into<&'a str>,
fn downgrade(&self) -> WeakRef<T>
[src]
fn bind_property<'a, O, N, M>(
&'a self,
source_property: N,
target: &'a O,
target_property: M
) -> BindingBuilder<'a> where
M: Into<&'a str>,
N: Into<&'a str>,
O: ObjectType,
[src]
&'a self,
source_property: N,
target: &'a O,
target_property: M
) -> BindingBuilder<'a> where
M: Into<&'a str>,
N: Into<&'a str>,
O: ObjectType,
fn ref_count(&self) -> u32
[src]
impl<'a, T> ToGlibContainerFromSlice<'a, *const GList> for T where
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
[src]
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
type Storage = (Option<List>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)
fn to_glib_none_from_slice(
t: &'a [T]
) -> (*const GList, <T as ToGlibContainerFromSlice<'a, *const GList>>::Storage)
[src]
t: &'a [T]
) -> (*const GList, <T as ToGlibContainerFromSlice<'a, *const GList>>::Storage)
fn to_glib_container_from_slice(
_t: &'a [T]
) -> (*const GList, <T as ToGlibContainerFromSlice<'a, *const GList>>::Storage)
[src]
_t: &'a [T]
) -> (*const GList, <T as ToGlibContainerFromSlice<'a, *const GList>>::Storage)
fn to_glib_full_from_slice(_t: &[T]) -> *const GList
[src]
impl<'a, T> ToGlibContainerFromSlice<'a, *const GPtrArray> for T where
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
[src]
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
type Storage = (Option<PtrArray>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)
fn to_glib_none_from_slice(
t: &'a [T]
) -> (*const GPtrArray, <T as ToGlibContainerFromSlice<'a, *const GPtrArray>>::Storage)
[src]
t: &'a [T]
) -> (*const GPtrArray, <T as ToGlibContainerFromSlice<'a, *const GPtrArray>>::Storage)
fn to_glib_container_from_slice(
_t: &'a [T]
) -> (*const GPtrArray, <T as ToGlibContainerFromSlice<'a, *const GPtrArray>>::Storage)
[src]
_t: &'a [T]
) -> (*const GPtrArray, <T as ToGlibContainerFromSlice<'a, *const GPtrArray>>::Storage)
fn to_glib_full_from_slice(_t: &[T]) -> *const GPtrArray
[src]
impl<'a, T> ToGlibContainerFromSlice<'a, *mut GArray> for T where
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
[src]
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
type Storage = (Option<Array>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)
fn to_glib_none_from_slice(
t: &'a [T]
) -> (*mut GArray, <T as ToGlibContainerFromSlice<'a, *mut GArray>>::Storage)
[src]
t: &'a [T]
) -> (*mut GArray, <T as ToGlibContainerFromSlice<'a, *mut GArray>>::Storage)
fn to_glib_container_from_slice(
t: &'a [T]
) -> (*mut GArray, <T as ToGlibContainerFromSlice<'a, *mut GArray>>::Storage)
[src]
t: &'a [T]
) -> (*mut GArray, <T as ToGlibContainerFromSlice<'a, *mut GArray>>::Storage)
fn to_glib_full_from_slice(t: &[T]) -> *mut GArray
[src]
impl<'a, T> ToGlibContainerFromSlice<'a, *mut GList> for T where
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
[src]
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
type Storage = (Option<List>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)
fn to_glib_none_from_slice(
t: &'a [T]
) -> (*mut GList, <T as ToGlibContainerFromSlice<'a, *mut GList>>::Storage)
[src]
t: &'a [T]
) -> (*mut GList, <T as ToGlibContainerFromSlice<'a, *mut GList>>::Storage)
fn to_glib_container_from_slice(
t: &'a [T]
) -> (*mut GList, <T as ToGlibContainerFromSlice<'a, *mut GList>>::Storage)
[src]
t: &'a [T]
) -> (*mut GList, <T as ToGlibContainerFromSlice<'a, *mut GList>>::Storage)
fn to_glib_full_from_slice(t: &[T]) -> *mut GList
[src]
impl<'a, T> ToGlibContainerFromSlice<'a, *mut GPtrArray> for T where
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
[src]
T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>,
type Storage = (Option<PtrArray>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)
fn to_glib_none_from_slice(
t: &'a [T]
) -> (*mut GPtrArray, <T as ToGlibContainerFromSlice<'a, *mut GPtrArray>>::Storage)
[src]
t: &'a [T]
) -> (*mut GPtrArray, <T as ToGlibContainerFromSlice<'a, *mut GPtrArray>>::Storage)
fn to_glib_container_from_slice(
t: &'a [T]
) -> (*mut GPtrArray, <T as ToGlibContainerFromSlice<'a, *mut GPtrArray>>::Storage)
[src]
t: &'a [T]
) -> (*mut GPtrArray, <T as ToGlibContainerFromSlice<'a, *mut GPtrArray>>::Storage)
fn to_glib_full_from_slice(t: &[T]) -> *mut GPtrArray
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToSendValue for T where
T: ToValue + SetValue + Send + ?Sized,
[src]
T: ToValue + SetValue + Send + ?Sized,
fn to_send_value(&self) -> SendValue
[src]
impl<T> ToValue for T where
T: SetValue + ?Sized,
[src]
T: SetValue + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,