pub struct Latency<T = MessageRef>(/* private fields */);
Implementations§
Source§impl Latency
impl Latency
pub fn message(&self) -> &MessageRef
pub fn message_mut(&mut self) -> &mut MessageRef
Methods from Deref<Target = MessageRef>§
pub fn as_ptr(&self) -> *const GstMessage
pub fn as_mut_ptr(&self) -> *mut GstMessage
pub fn copy(&self) -> Message
pub fn upcast_ref(&self) -> &MiniObjectRef
pub fn upcast_mut(&mut self) -> &mut MiniObjectRef
pub fn src(&self) -> Option<&Object>
pub fn seqnum(&self) -> Seqnum
pub fn set_seqnum(&self, seqnum: Seqnum)
pub fn structure(&self) -> Option<&StructureRef>
pub fn structure_mut(&mut self) -> &mut StructureRef
pub fn details(&self) -> Option<&StructureRef>
pub fn details_mut(&mut self) -> &mut StructureRef
pub fn set_details(&mut self, structure: Structure)
pub fn has_name(&self, name: &str) -> bool
pub fn view(&self) -> MessageView<'_>
pub fn view_mut(&mut self) -> MessageViewMut<'_>
pub fn type_(&self) -> MessageType
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Latency<T>where
T: Freeze,
impl<T> RefUnwindSafe for Latency<T>where
T: RefUnwindSafe,
impl<T> Send for Latency<T>where
T: Send,
impl<T> Sync for Latency<T>where
T: Sync,
impl<T> Unpin for Latency<T>where
T: Unpin,
impl<T> UnwindSafe for Latency<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more