Struct gstreamer::message::StreamsSelected
source · pub struct StreamsSelected<T = MessageRef>(/* private fields */);
Implementations§
source§impl StreamsSelected
impl StreamsSelected
pub fn message(&self) -> &MessageRef
source§impl StreamsSelected<Message>
impl StreamsSelected<Message>
pub fn get_mut(&mut self) -> Option<&mut StreamsSelected>
source§impl StreamsSelected
impl StreamsSelected
pub fn new(collection: &StreamCollection) -> Message
pub fn builder(collection: &StreamCollection) -> StreamsSelectedBuilder<'_>
pub fn stream_collection(&self) -> StreamCollection
pub fn streams(&self) -> Vec<Stream>
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<StreamsSelected> for StreamsSelected<Message>
impl Borrow<StreamsSelected> for StreamsSelected<Message>
source§fn borrow(&self) -> &StreamsSelected
fn borrow(&self) -> &StreamsSelected
Immutably borrows from an owned value. Read more
source§impl Debug for StreamsSelected
impl Debug for StreamsSelected
source§impl Debug for StreamsSelected<Message>
impl Debug for StreamsSelected<Message>
source§impl Deref for StreamsSelected
impl Deref for StreamsSelected
source§impl Deref for StreamsSelected<Message>
impl Deref for StreamsSelected<Message>
source§impl From<StreamsSelected<Message>> for Message
impl From<StreamsSelected<Message>> for Message
source§fn from(concrete: StreamsSelected<Message>) -> Self
fn from(concrete: StreamsSelected<Message>) -> Self
Converts to this type from the input type.
source§impl ToOwned for StreamsSelected
impl ToOwned for StreamsSelected
§type Owned = StreamsSelected<Message>
type Owned = StreamsSelected<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 StreamsSelected<T>where
T: Freeze,
impl<T> RefUnwindSafe for StreamsSelected<T>where
T: RefUnwindSafe,
impl<T> Send for StreamsSelected<T>where
T: Send,
impl<T> Sync for StreamsSelected<T>where
T: Sync,
impl<T> Unpin for StreamsSelected<T>where
T: Unpin,
impl<T> UnwindSafe for StreamsSelected<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