[][src]Enum stainless_ffmpeg_sys::AVEscapeMode

#[repr(u32)]pub enum AVEscapeMode {
    AV_ESCAPE_MODE_AUTO,
    AV_ESCAPE_MODE_BACKSLASH,
    AV_ESCAPE_MODE_QUOTE,
}

Variants

AV_ESCAPE_MODE_AUTO

< Use auto-selected escaping mode.

AV_ESCAPE_MODE_BACKSLASH

< Use backslash escaping.

AV_ESCAPE_MODE_QUOTE

< Use single-quote escaping.

Trait Implementations

impl Clone for AVEscapeMode[src]

impl Copy for AVEscapeMode[src]

impl Debug for AVEscapeMode[src]

impl Eq for AVEscapeMode[src]

impl Hash for AVEscapeMode[src]

impl PartialEq<AVEscapeMode> for AVEscapeMode[src]

impl StructuralEq for AVEscapeMode[src]

impl StructuralPartialEq for AVEscapeMode[src]

Auto Trait Implementations

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.