[][src]Struct ffmpeg_next::DictionaryRef

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

Implementations

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

pub unsafe fn wrap(ptr: *const AVDictionary) -> Self[src]

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

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

pub fn get(&'a self, key: &str) -> Option<&'a str>[src]

pub fn iter(&self) -> Iter[src]

pub fn to_owned<'b>(&self) -> Owned<'b>[src]

Trait Implementations

impl<'a> IntoIterator for &'a Ref<'a>[src]

type Item = (&'a str, &'a str)

The type of the elements being iterated over.

type IntoIter = Iter<'a>

Which kind of iterator are we turning this into?

Auto Trait Implementations

impl<'a> RefUnwindSafe for Ref<'a>

impl<'a> !Send for Ref<'a>

impl<'a> !Sync for Ref<'a>

impl<'a> Unpin for Ref<'a>

impl<'a> UnwindSafe for Ref<'a>

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.