Struct gstreamer::event::StreamCollection
source · pub struct StreamCollection<T = EventRef>(/* private fields */);
Implementations§
source§impl StreamCollection<Event>
impl StreamCollection<Event>
pub fn get_mut(&mut self) -> Option<&mut StreamCollection>
source§impl StreamCollection<Event>
impl StreamCollection<Event>
pub fn new(stream_collection: &StreamCollection) -> Event
pub fn builder( stream_collection: &StreamCollection, ) -> StreamCollectionBuilder<'_>
source§impl StreamCollection
impl StreamCollection
pub fn stream_collection(&self) -> StreamCollection
Methods from Deref<Target = EventRef>§
pub fn as_ptr(&self) -> *const GstEvent
pub fn as_mut_ptr(&self) -> *mut GstEvent
pub fn copy(&self) -> Event
pub fn upcast_ref(&self) -> &MiniObjectRef
pub fn seqnum(&self) -> Seqnum
pub fn running_time_offset(&self) -> i64
pub fn structure(&self) -> Option<&StructureRef>
pub fn is_upstream(&self) -> bool
pub fn is_downstream(&self) -> bool
pub fn is_serialized(&self) -> bool
pub fn is_sticky(&self) -> bool
pub fn is_sticky_multi(&self) -> bool
pub fn type_(&self) -> EventType
pub fn has_name(&self, name: &str) -> bool
pub fn view(&self) -> EventView<'_>
Trait Implementations§
source§impl Borrow<StreamCollection> for StreamCollection<Event>
impl Borrow<StreamCollection> for StreamCollection<Event>
source§fn borrow(&self) -> &StreamCollection
fn borrow(&self) -> &StreamCollection
Immutably borrows from an owned value. Read more
source§impl Debug for StreamCollection
impl Debug for StreamCollection
source§impl Debug for StreamCollection<Event>
impl Debug for StreamCollection<Event>
source§impl Deref for StreamCollection
impl Deref for StreamCollection
source§impl Deref for StreamCollection<Event>
impl Deref for StreamCollection<Event>
source§impl From<StreamCollection<Event>> for Event
impl From<StreamCollection<Event>> for Event
source§fn from(concrete: StreamCollection<Event>) -> Self
fn from(concrete: StreamCollection<Event>) -> Self
Converts to this type from the input type.
source§impl StickyEventType for StreamCollection
impl StickyEventType for StreamCollection
source§impl ToOwned for StreamCollection
impl ToOwned for StreamCollection
§type Owned = StreamCollection<Event>
type Owned = StreamCollection<Event>
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 StreamCollection<T>where
T: Freeze,
impl<T> RefUnwindSafe for StreamCollection<T>where
T: RefUnwindSafe,
impl<T> Send for StreamCollection<T>where
T: Send,
impl<T> Sync for StreamCollection<T>where
T: Sync,
impl<T> Unpin for StreamCollection<T>where
T: Unpin,
impl<T> UnwindSafe for StreamCollection<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