Struct gstreamer_base::subclass::base_src::InstanceData
source · pub(super) struct InstanceData {
pub(super) pending_buffer_list: AtomicRefCell<Option<BufferList>>,
}
Fields§
§pending_buffer_list: AtomicRefCell<Option<BufferList>>
Trait Implementations§
source§impl Default for InstanceData
impl Default for InstanceData
source§fn default() -> InstanceData
fn default() -> InstanceData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for InstanceData
impl !RefUnwindSafe for InstanceData
impl Send for InstanceData
impl Sync for InstanceData
impl Unpin for InstanceData
impl UnwindSafe for InstanceData
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