[−][src]Struct gstreamer_net::NetClientClock 
NetClientClock implements a custom gst::Clock that synchronizes its time
to a remote time provider such as NetTimeProvider. NtpClock
implements a gst::Clock that synchronizes its time to a remote NTPv4 server.
A new clock is created with NetClientClock::new or
NtpClock::new, which takes the address and port of the remote time
provider along with a name and an initial time.
This clock will poll the time provider and will update its calibration parameters based on the local and remote observations.
The "round-trip" property limits the maximum round trip packets can take.
Various parameters of the clock can be configured with the parent gst::Clock
"timeout", "window-size" and "window-threshold" object properties.
A NetClientClock and NtpClock is typically set on a gst::Pipeline with
gst::Pipeline::use_clock.
If you set a gst::Bus on the clock via the "bus" object property, it will
send gst::MessageType::Element messages with an attached gst::Structure containing
statistics about clock accuracy and network traffic.
Implements
Implementations
impl NetClientClock[src]
pub fn get_property_address(&self) -> Option<GString>[src]
pub fn set_property_address(&self, address: Option<&str>)[src]
pub fn get_property_base_time(&self) -> u64[src]
pub fn get_property_bus(&self) -> Option<Bus>[src]
pub fn set_property_bus<P: IsA<Bus> + SetValueOptional>(&self, bus: Option<&P>)[src]
pub fn get_property_internal_clock(&self) -> Option<Clock>[src]
pub fn get_property_minimum_update_interval(&self) -> u64[src]
pub fn set_property_minimum_update_interval(&self, minimum_update_interval: u64)[src]
pub fn get_property_port(&self) -> i32[src]
pub fn set_property_port(&self, port: i32)[src]
pub fn get_property_qos_dscp(&self) -> i32[src]
pub fn set_property_qos_dscp(&self, qos_dscp: i32)[src]
pub fn get_property_round_trip_limit(&self) -> u64[src]
pub fn set_property_round_trip_limit(&self, round_trip_limit: u64)[src]
pub fn connect_property_address_notify<F: Fn(&NetClientClock) + Send + Sync + 'static>(
    &self, 
    f: F
) -> SignalHandlerId[src]
&self,
f: F
) -> SignalHandlerId
pub fn connect_property_bus_notify<F: Fn(&NetClientClock) + Send + Sync + 'static>(
    &self, 
    f: F
) -> SignalHandlerId[src]
&self,
f: F
) -> SignalHandlerId
pub fn connect_property_internal_clock_notify<F: Fn(&NetClientClock) + Send + Sync + 'static>(
    &self, 
    f: F
) -> SignalHandlerId[src]
&self,
f: F
) -> SignalHandlerId
pub fn connect_property_minimum_update_interval_notify<F: Fn(&NetClientClock) + Send + Sync + 'static>(
    &self, 
    f: F
) -> SignalHandlerId[src]
&self,
f: F
) -> SignalHandlerId
pub fn connect_property_port_notify<F: Fn(&NetClientClock) + Send + Sync + 'static>(
    &self, 
    f: F
) -> SignalHandlerId[src]
&self,
f: F
) -> SignalHandlerId
pub fn connect_property_qos_dscp_notify<F: Fn(&NetClientClock) + Send + Sync + 'static>(
    &self, 
    f: F
) -> SignalHandlerId[src]
&self,
f: F
) -> SignalHandlerId
pub fn connect_property_round_trip_limit_notify<F: Fn(&NetClientClock) + Send + Sync + 'static>(
    &self, 
    f: F
) -> SignalHandlerId[src]
&self,
f: F
) -> SignalHandlerId
impl NetClientClock[src]
pub fn new(
    name: Option<&str>, 
    remote_address: &str, 
    remote_port: i32, 
    base_time: ClockTime
) -> NetClientClock[src]
name: Option<&str>,
remote_address: &str,
remote_port: i32,
base_time: ClockTime
) -> NetClientClock
Create a new NetClientClock that will report the time
provided by the NetTimeProvider on remote_address and
remote_port.
name
a name for the clock
remote_address
the address or hostname of the remote clock provider
remote_port
the port of the remote clock provider
base_time
initial time of the clock
Returns
a new gst::Clock that receives a time from the remote
clock.
Trait Implementations
impl Clone for NetClientClock[src]
fn clone(&self) -> NetClientClock[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for NetClientClock[src]
impl Eq for NetClientClock[src]
impl Hash for NetClientClock[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<Clock> for NetClientClock[src]
impl IsA<NetClientClock> for NtpClock[src]
impl IsA<Object> for NetClientClock[src]
impl Ord for NetClientClock[src]
fn cmp(&self, other: &NetClientClock) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl<T: ObjectType> PartialEq<T> for NetClientClock[src]
impl<T: ObjectType> PartialOrd<T> for NetClientClock[src]
fn partial_cmp(&self, other: &T) -> Option<Ordering>[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl Send for NetClientClock[src]
impl StaticType for NetClientClock[src]
fn static_type() -> Type[src]
impl Sync for NetClientClock[src]
Auto Trait Implementations
impl RefUnwindSafe for NetClientClock
impl Unpin for NetClientClock
impl UnwindSafe for NetClientClock
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<O> ClockExt for O where
    O: IsA<Clock>, [src]
O: IsA<Clock>,
fn add_observation(&self, slave: ClockTime, master: ClockTime) -> Option<f64>[src]
fn add_observation_unapplied(
    &self, 
    slave: ClockTime, 
    master: ClockTime
) -> Option<(f64, ClockTime, ClockTime, ClockTime, ClockTime)>[src]
&self,
slave: ClockTime,
master: ClockTime
) -> Option<(f64, ClockTime, ClockTime, ClockTime, ClockTime)>
fn adjust_unlocked(&self, internal: ClockTime) -> ClockTime[src]
fn get_calibration(&self) -> (ClockTime, ClockTime, ClockTime, ClockTime)[src]
fn get_internal_time(&self) -> ClockTime[src]
fn get_master(&self) -> Option<Clock>[src]
fn get_resolution(&self) -> ClockTime[src]
fn get_time(&self) -> ClockTime[src]
fn get_timeout(&self) -> ClockTime[src]
fn is_synced(&self) -> bool[src]
fn set_calibration(
    &self, 
    internal: ClockTime, 
    external: ClockTime, 
    rate_num: ClockTime, 
    rate_denom: ClockTime
)[src]
&self,
internal: ClockTime,
external: ClockTime,
rate_num: ClockTime,
rate_denom: ClockTime
)
fn set_master<P>(&self, master: Option<&P>) -> Result<(), BoolError> where
    P: IsA<Clock>, [src]
P: IsA<Clock>,
fn set_resolution(&self, resolution: ClockTime) -> ClockTime[src]
fn set_synced(&self, synced: bool)[src]
fn set_timeout(&self, timeout: ClockTime)[src]
fn unadjust_unlocked(&self, external: ClockTime) -> ClockTime[src]
fn wait_for_sync(&self, timeout: ClockTime) -> Result<(), BoolError>[src]
fn get_property_window_size(&self) -> i32[src]
fn set_property_window_size(&self, window_size: i32)[src]
fn get_property_window_threshold(&self) -> i32[src]
fn set_property_window_threshold(&self, window_threshold: i32)[src]
fn connect_synced<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Send + Sync + Fn(&O, bool), [src]
F: 'static + Send + Sync + Fn(&O, bool),
fn connect_property_timeout_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Send + Sync + Fn(&O), [src]
F: 'static + Send + Sync + Fn(&O),
fn connect_property_window_size_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Send + Sync + Fn(&O), [src]
F: 'static + Send + Sync + Fn(&O),
fn connect_property_window_threshold_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Send + Sync + Fn(&O), [src]
F: 'static + Send + Sync + Fn(&O),
impl<O> ClockExtManual for O where
    O: IsA<Clock>, [src]
O: IsA<Clock>,
fn new_periodic_id(
    &self, 
    start_time: ClockTime, 
    interval: ClockTime
) -> Result<ClockId, BoolError>[src]
&self,
start_time: ClockTime,
interval: ClockTime
) -> Result<ClockId, BoolError>
fn periodic_id_reinit(
    &self, 
    id: &ClockId, 
    start_time: ClockTime, 
    interval: ClockTime
) -> Result<(), BoolError>[src]
&self,
id: &ClockId,
start_time: ClockTime,
interval: ClockTime
) -> Result<(), BoolError>
fn new_single_shot_id(&self, time: ClockTime) -> Result<ClockId, BoolError>[src]
fn single_shot_id_reinit(
    &self, 
    id: &ClockId, 
    time: ClockTime
) -> Result<(), BoolError>[src]
&self,
id: &ClockId,
time: ClockTime
) -> Result<(), BoolError>
fn set_clock_flags(&self, flags: ClockFlags)[src]
fn unset_clock_flags(&self, flags: ClockFlags)[src]
fn get_clock_flags(&self) -> ClockFlags[src]
impl<T> From<T> for T[src]
impl<O> GObjectExtManualGst for O where
    O: IsA<Object>, [src]
O: IsA<Object>,
fn set_property_from_str(&self, name: &str, value: &str)[src]
impl<O> GstObjectExt for O where
    O: IsA<Object>, [src]
O: IsA<Object>,
fn default_error(&self, error: &Error, debug: Option<&str>)[src]
fn get_control_rate(&self) -> ClockTime[src]
fn get_name(&self) -> GString[src]
fn get_parent(&self) -> Option<Object>[src]
fn get_path_string(&self) -> GString[src]
fn has_active_control_bindings(&self) -> bool[src]
fn has_ancestor<P>(&self, ancestor: &P) -> bool where
    P: IsA<Object>, [src]
P: IsA<Object>,
fn has_as_ancestor<P>(&self, ancestor: &P) -> bool where
    P: IsA<Object>, [src]
P: IsA<Object>,
fn has_as_parent<P>(&self, parent: &P) -> bool where
    P: IsA<Object>, [src]
P: IsA<Object>,
fn set_control_binding_disabled(&self, property_name: &str, disabled: bool)[src]
fn set_control_bindings_disabled(&self, disabled: bool)[src]
fn set_control_rate(&self, control_rate: ClockTime)[src]
fn set_parent<P>(&self, parent: &P) -> Result<(), BoolError> where
    P: IsA<Object>, [src]
P: IsA<Object>,
fn suggest_next_sync(&self) -> ClockTime[src]
fn sync_values(&self, timestamp: ClockTime) -> Result<(), BoolError>[src]
fn unparent(&self)[src]
fn connect_property_parent_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Send + Sync + Fn(&O), [src]
F: 'static + Send + Sync + Fn(&O),
impl<O> GstObjectExtManual for O where
    O: IsA<Object>, [src]
O: IsA<Object>,
fn connect_deep_notify<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId where
    F: 'static + Send + Sync + Fn(&O, &Object, &ParamSpec), [src]
F: 'static + Send + Sync + Fn(&O, &Object, &ParamSpec),
fn set_object_flags(&self, flags: ObjectFlags)[src]
fn unset_object_flags(&self, flags: ObjectFlags)[src]
fn get_object_flags(&self) -> ObjectFlags[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>,