Struct gstreamer::event::CustomDownstream
source · pub struct CustomDownstream<T = EventRef>(/* private fields */);
Implementations§
source§impl CustomDownstream<Event>
impl CustomDownstream<Event>
pub fn get_mut(&mut self) -> Option<&mut CustomDownstream>
Trait Implementations§
source§impl Borrow<CustomDownstream> for CustomDownstream<Event>
impl Borrow<CustomDownstream> for CustomDownstream<Event>
source§fn borrow(&self) -> &CustomDownstream
fn borrow(&self) -> &CustomDownstream
Immutably borrows from an owned value. Read more
source§impl Debug for CustomDownstream
impl Debug for CustomDownstream
source§impl Debug for CustomDownstream<Event>
impl Debug for CustomDownstream<Event>
source§impl Deref for CustomDownstream
impl Deref for CustomDownstream
source§impl Deref for CustomDownstream<Event>
impl Deref for CustomDownstream<Event>
source§impl From<CustomDownstream<Event>> for Event
impl From<CustomDownstream<Event>> for Event
source§fn from(concrete: CustomDownstream<Event>) -> Self
fn from(concrete: CustomDownstream<Event>) -> Self
Converts to this type from the input type.
source§impl ToOwned for CustomDownstream
impl ToOwned for CustomDownstream
§type Owned = CustomDownstream<Event>
type Owned = CustomDownstream<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 CustomDownstream<T>where
T: Freeze,
impl<T> RefUnwindSafe for CustomDownstream<T>where
T: RefUnwindSafe,
impl<T> Send for CustomDownstream<T>where
T: Send,
impl<T> Sync for CustomDownstream<T>where
T: Sync,
impl<T> Unpin for CustomDownstream<T>where
T: Unpin,
impl<T> UnwindSafe for CustomDownstream<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