[][src]Struct gstreamer::toc::TocEntryRef

#[repr(C)]
pub struct TocEntryRef(_);

Methods

impl TocEntryRef[src]

pub fn get_entry_type(&self) -> TocEntryType[src]

pub fn get_uid(&self) -> &str[src]

pub fn append_sub_entry(&mut self, subentry: TocEntry)[src]

pub fn get_sub_entries(&self) -> Vec<TocEntry>[src]

pub fn get_parent(&self) -> Option<TocEntry>[src]

pub fn get_start_stop_times(&self) -> Option<(i64, i64)>[src]

pub fn set_start_stop_times(&mut self, start: i64, stop: i64)[src]

pub fn get_tags(&self) -> Option<TagList>[src]

pub fn set_tags(&mut self, tag_list: TagList)[src]

pub fn merge_tags(&mut self, tag_list: &TagList, mode: TagMergeMode)[src]

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

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

pub fn get_loop(&self) -> Option<(TocLoopType, i32)>[src]

pub fn set_loop(&mut self, loop_type: TocLoopType, repeat_count: i32)[src]

Trait Implementations

impl AsRef<TocEntryRef> for TocEntry[src]

impl Borrow<TocEntryRef> for TocEntry[src]

impl Debug for TocEntryRef[src]

impl MiniObject for TocEntryRef[src]

type GstType = GstTocEntry

impl Send for TocEntryRef[src]

impl Serialize for TocEntryRef[src]

impl StaticType for TocEntryRef[src]

impl Sync for TocEntryRef[src]

impl ToOwned for TocEntryRef[src]

type Owned = TocEntry

The resulting type after obtaining ownership.

Auto Trait Implementations

impl RefUnwindSafe for TocEntryRef

impl Unpin for TocEntryRef

impl UnwindSafe for TocEntryRef

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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.