pub struct StreamsSelected<T = MessageRef>(/* private fields */);
Implementations§
Source§impl StreamsSelected
impl StreamsSelected
pub fn message(&self) -> &MessageRef
pub fn message_mut(&mut self) -> &mut 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 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<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 DerefMut for StreamsSelected
impl DerefMut for StreamsSelected
Source§impl DerefMut for StreamsSelected<Message>
impl DerefMut 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
Source§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