pub struct DeviceChanged<T = MessageRef>(/* private fields */);
Implementations§
Source§impl DeviceChanged
impl DeviceChanged
pub fn message(&self) -> &MessageRef
pub fn message_mut(&mut self) -> &mut MessageRef
Source§impl DeviceChanged<Message>
impl DeviceChanged<Message>
pub fn get_mut(&mut self) -> Option<&mut DeviceChanged>
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§
Source§impl Borrow<DeviceChanged> for DeviceChanged<Message>
impl Borrow<DeviceChanged> for DeviceChanged<Message>
Source§fn borrow(&self) -> &DeviceChanged
fn borrow(&self) -> &DeviceChanged
Immutably borrows from an owned value. Read more
Source§impl Debug for DeviceChanged
impl Debug for DeviceChanged
Source§impl Debug for DeviceChanged<Message>
impl Debug for DeviceChanged<Message>
Source§impl Deref for DeviceChanged
impl Deref for DeviceChanged
Source§impl Deref for DeviceChanged<Message>
impl Deref for DeviceChanged<Message>
Source§impl DerefMut for DeviceChanged
impl DerefMut for DeviceChanged
Source§impl DerefMut for DeviceChanged<Message>
impl DerefMut for DeviceChanged<Message>
Source§impl From<DeviceChanged<Message>> for Message
impl From<DeviceChanged<Message>> for Message
Source§fn from(concrete: DeviceChanged<Message>) -> Self
fn from(concrete: DeviceChanged<Message>) -> Self
Converts to this type from the input type.
Source§impl ToOwned for DeviceChanged
impl ToOwned for DeviceChanged
Source§type Owned = DeviceChanged<Message>
type Owned = DeviceChanged<Message>
The resulting type after obtaining ownership.
Source§fn to_owned(&self) -> Self::Owned
fn to_owned(&self) -> Self::Owned
Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · Source§fn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
Uses borrowed data to replace owned data, usually by cloning. Read more
Auto Trait Implementations§
impl<T> Freeze for DeviceChanged<T>where
T: Freeze,
impl<T> RefUnwindSafe for DeviceChanged<T>where
T: RefUnwindSafe,
impl<T> Send for DeviceChanged<T>where
T: Send,
impl<T> Sync for DeviceChanged<T>where
T: Sync,
impl<T> Unpin for DeviceChanged<T>where
T: Unpin,
impl<T> UnwindSafe for DeviceChanged<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