pub struct Bitrate<T = QueryRef>(/* private fields */);
Implementations§
Methods from Deref<Target = QueryRef>§
pub fn as_ptr(&self) -> *const GstQuery
pub fn as_mut_ptr(&self) -> *mut GstQuery
pub fn copy(&self) -> Query
pub fn upcast_ref(&self) -> &MiniObjectRef
pub fn upcast_mut(&mut self) -> &mut MiniObjectRef
pub fn structure(&self) -> Option<&StructureRef>
pub fn structure_mut(&mut self) -> &mut StructureRef
pub fn is_downstream(&self) -> bool
pub fn is_upstream(&self) -> bool
pub fn is_serialized(&self) -> bool
pub fn view(&self) -> QueryView<'_>
pub fn view_mut(&mut self) -> QueryViewMut<'_>
Trait Implementations§
source§impl BorrowMut<Bitrate> for Bitrate<Query>
impl BorrowMut<Bitrate> for Bitrate<Query>
source§fn borrow_mut(&mut self) -> &mut Bitrate
fn borrow_mut(&mut self) -> &mut Bitrate
Mutably borrows from an owned value. Read more
Auto Trait Implementations§
impl<T> Freeze for Bitrate<T>where
T: Freeze,
impl<T> RefUnwindSafe for Bitrate<T>where
T: RefUnwindSafe,
impl<T> Send for Bitrate<T>where
T: Send,
impl<T> Sync for Bitrate<T>where
T: Sync,
impl<T> Unpin for Bitrate<T>where
T: Unpin,
impl<T> UnwindSafe for Bitrate<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