[][src]Enum uwp_transcode::file::CreationOptions

pub enum CreationOptions {
    CreateUniqueName,
    Overwrite,
    Fail,
    Open,
}

Options for when a created file has the same name as another.

Variants

CreateUniqueName

Creates a new name

Overwrite

Overwrites

Fail

Fails operation

Open

Opens old file

Trait Implementations

impl Clone for CreationOptions[src]

impl Copy for CreationOptions[src]

impl Debug for CreationOptions[src]

impl Default for CreationOptions[src]

impl Eq for CreationOptions[src]

impl Hash for CreationOptions[src]

impl Into<CreationCollisionOption> for CreationOptions[src]

impl PartialEq<CreationOptions> for CreationOptions[src]

impl StructuralEq for CreationOptions[src]

impl StructuralPartialEq for CreationOptions[src]

Auto Trait Implementations

impl RefUnwindSafe for CreationOptions

impl Send for CreationOptions

impl Sync for CreationOptions

impl Unpin for CreationOptions

impl UnwindSafe for CreationOptions

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.