Struct gstreamer::message::DeviceAdded
source · pub struct DeviceAdded<T = MessageRef>(/* private fields */);
Implementations§
source§impl DeviceAdded
impl DeviceAdded
pub fn message(&self) -> &MessageRef
source§impl DeviceAdded<Message>
impl DeviceAdded<Message>
pub fn get_mut(&mut self) -> Option<&mut DeviceAdded>
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 src(&self) -> Option<&Object>
pub fn seqnum(&self) -> Seqnum
pub fn structure(&self) -> Option<&StructureRef>
pub fn details(&self) -> Option<&StructureRef>
pub fn has_name(&self, name: &str) -> bool
pub fn view(&self) -> MessageView<'_>
pub fn type_(&self) -> MessageType
Trait Implementations§
source§impl Borrow<DeviceAdded> for DeviceAdded<Message>
impl Borrow<DeviceAdded> for DeviceAdded<Message>
source§fn borrow(&self) -> &DeviceAdded
fn borrow(&self) -> &DeviceAdded
Immutably borrows from an owned value. Read more
source§impl Debug for DeviceAdded
impl Debug for DeviceAdded
source§impl Debug for DeviceAdded<Message>
impl Debug for DeviceAdded<Message>
source§impl Deref for DeviceAdded
impl Deref for DeviceAdded
source§impl Deref for DeviceAdded<Message>
impl Deref for DeviceAdded<Message>
source§impl From<DeviceAdded<Message>> for Message
impl From<DeviceAdded<Message>> for Message
source§fn from(concrete: DeviceAdded<Message>) -> Self
fn from(concrete: DeviceAdded<Message>) -> Self
Converts to this type from the input type.
source§impl ToOwned for DeviceAdded
impl ToOwned for DeviceAdded
§type Owned = DeviceAdded<Message>
type Owned = DeviceAdded<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 DeviceAdded<T>where
T: Freeze,
impl<T> RefUnwindSafe for DeviceAdded<T>where
T: RefUnwindSafe,
impl<T> Send for DeviceAdded<T>where
T: Send,
impl<T> Sync for DeviceAdded<T>where
T: Sync,
impl<T> Unpin for DeviceAdded<T>where
T: Unpin,
impl<T> UnwindSafe for DeviceAdded<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