Struct gstreamer::query::Segment[][src]

pub struct Segment<T>(_);

Implementations

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

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

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

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

impl Segment<Query>[src]

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

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

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

pub fn set<V: Into<GenericFormattedValue>>(
    &mut self,
    rate: f64,
    start: V,
    stop: 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 Segment<T>[src]

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

Formats the value using the given formatter. Read more

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

type Target = QueryRef

The resulting type after dereferencing.

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

Dereferences the value.

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

type Target = Segment<&'a QueryRef>

The resulting type after dereferencing.

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

Dereferences the value.

impl Deref for Segment<Query>[src]

type Target = QueryRef

The resulting type after dereferencing.

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

Dereferences the value.

impl DerefMut for Segment<Query>[src]

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

Mutably dereferences the value.

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

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

Performs the conversion.

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for Segment<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.