pub struct Buffering<T = QueryRef>(/* private fields */);
Implementations§
source§impl Buffering
impl Buffering
pub fn format(&self) -> Format
pub fn percent(&self) -> (bool, i32)
pub fn range(&self) -> (GenericFormattedValue, GenericFormattedValue, i64)
pub fn stats(&self) -> (BufferingMode, i32, i32, i64)
pub fn ranges(&self) -> Vec<(GenericFormattedValue, GenericFormattedValue)>
pub fn set_percent(&mut self, busy: bool, percent: i32)
pub fn set_range<V: FormattedValue>( &mut self, start: V, stop: impl CompatibleFormattedValue<V>, estimated_total: i64, )
pub fn set_stats( &mut self, mode: BufferingMode, avg_in: i32, avg_out: i32, buffering_left: i64, )
pub fn add_buffering_ranges<V: FormattedValue, U: CompatibleFormattedValue<V> + Copy>( &mut self, ranges: &[(V, U)], )
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<Buffering> for Buffering<Query>
impl BorrowMut<Buffering> for Buffering<Query>
source§fn borrow_mut(&mut self) -> &mut Buffering
fn borrow_mut(&mut self) -> &mut Buffering
Mutably borrows from an owned value. Read more
Auto Trait Implementations§
impl<T> Freeze for Buffering<T>where
T: Freeze,
impl<T> RefUnwindSafe for Buffering<T>where
T: RefUnwindSafe,
impl<T> Send for Buffering<T>where
T: Send,
impl<T> Sync for Buffering<T>where
T: Sync,
impl<T> Unpin for Buffering<T>where
T: Unpin,
impl<T> UnwindSafe for Buffering<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