Struct gstreamer::query::Duration[][src]

pub struct Duration<T>(_);

Implementations

impl<'a> Duration<&'a QueryRef>[src]

pub fn query(&self) -> &QueryRef[src]

impl<'a> Duration<&'a mut QueryRef>[src]

pub fn query_mut(&mut self) -> &mut QueryRef[src]

impl Duration<Query>[src]

pub fn new(fmt: Format) -> Self[src]

impl<T: AsPtr> Duration<T>[src]

pub fn result(&self) -> GenericFormattedValue[src]

pub fn format(&self) -> Format[src]

impl<T: AsMutPtr> Duration<T>[src]

pub fn set<V: Into<GenericFormattedValue>>(&mut self, dur: V)[src]

Methods from Deref<Target = QueryRef>

pub unsafe fn as_ptr(&self) -> *const GstQuery[src]

pub unsafe fn as_mut_ptr(&self) -> *mut GstQuery[src]

pub fn copy(&self) -> Query[src]

pub fn structure(&self) -> Option<&StructureRef>[src]

pub fn structure_mut(&mut self) -> &mut StructureRef[src]

pub fn is_downstream(&self) -> bool[src]

pub fn is_upstream(&self) -> bool[src]

pub fn is_serialized(&self) -> bool[src]

pub fn view(&self) -> QueryView<&Self>[src]

pub fn view_mut(&mut self) -> QueryView<&mut Self>[src]

Trait Implementations

impl<T: Debug> Debug for Duration<T>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'a> Deref for Duration<&'a QueryRef>[src]

type Target = QueryRef

The resulting type after dereferencing.

fn deref(&self) -> &Self::Target[src]

Dereferences the value.

impl<'a> Deref for Duration<&'a mut QueryRef>[src]

type Target = Duration<&'a QueryRef>

The resulting type after dereferencing.

fn deref(&self) -> &Self::Target[src]

Dereferences the value.

impl Deref for Duration<Query>[src]

type Target = QueryRef

The resulting type after dereferencing.

fn deref(&self) -> &Self::Target[src]

Dereferences the value.

impl DerefMut for Duration<Query>[src]

fn deref_mut(&mut self) -> &mut Self::Target[src]

Mutably dereferences the value.

impl From<Duration<Query>> for Query[src]

fn from(concrete: Duration<Query>) -> Self[src]

Performs the conversion.

Auto Trait Implementations

impl<T> RefUnwindSafe for Duration<T> where
    T: RefUnwindSafe

impl<T> Send for Duration<T> where
    T: Send

impl<T> Sync for Duration<T> where
    T: Sync

impl<T> Unpin for Duration<T> where
    T: Unpin

impl<T> UnwindSafe for Duration<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.