[][src]Struct ffmpeg_next::ChapterMut

pub struct ChapterMut<'a> { /* fields omitted */ }

Implementations

impl<'a> ChapterMut<'a>[src]

pub unsafe fn wrap(context: &mut Context, index: usize) -> ChapterMut<'_>[src]

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

impl<'a> ChapterMut<'a>[src]

pub fn set_id(&mut self, value: i32)[src]

pub fn set_time_base<R: Into<Rational>>(&mut self, value: R)[src]

pub fn set_start(&mut self, value: i64)[src]

pub fn set_end(&mut self, value: i64)[src]

pub fn set_metadata<K: AsRef<str>, V: AsRef<str>>(&mut self, key: K, value: V)[src]

pub fn metadata(&mut self) -> DictionaryMut<'_>[src]

Methods from Deref<Target = Chapter<'a>>

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

pub fn index(&self) -> usize[src]

pub fn id(&self) -> i32[src]

pub fn time_base(&self) -> Rational[src]

pub fn start(&self) -> i64[src]

pub fn end(&self) -> i64[src]

pub fn metadata(&self) -> DictionaryRef<'_>[src]

Trait Implementations

impl<'a> Deref for ChapterMut<'a>[src]

type Target = Chapter<'a>

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for ChapterMut<'a>[src]

impl<'a> !Send for ChapterMut<'a>[src]

impl<'a> !Sync for ChapterMut<'a>[src]

impl<'a> Unpin for ChapterMut<'a>[src]

impl<'a> !UnwindSafe for ChapterMut<'a>[src]

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, 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.