[][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 MiniObject for TocEntryRef[src]

type GstType = GstTocEntry

unsafe fn as_ptr(&self) -> *const Self::GstType[src]

unsafe fn as_mut_ptr(&self) -> *mut Self::GstType[src]

unsafe fn from_ptr<'a>(ptr: *const Self::GstType) -> &'a Self[src]

unsafe fn from_mut_ptr<'a>(ptr: *mut Self::GstType) -> &'a mut Self[src]

fn copy(&self) -> GstRc<Self>[src]

impl Send for TocEntryRef[src]

impl AsRef<TocEntryRef> for TocEntry[src]

impl Sync for TocEntryRef[src]

impl ToOwned for TocEntryRef[src]

type Owned = TocEntry

The resulting type after obtaining ownership.

fn clone_into(&self, target: &mut Self::Owned)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl Debug for TocEntryRef[src]

impl Borrow<TocEntryRef> for TocEntry[src]

impl StaticType for TocEntryRef[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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