[][src]Enum log_rs::OutputKind

pub enum OutputKind<'f> {
    STDOUT,
    STDERR,
    FILE(&'f str),
}

Identify the three kinds of output supported.

Variants

STDOUT
STDERR
FILE(&'f str)

Trait Implementations

impl<'f> Clone for OutputKind<'f>[src]

impl<'f> Eq for OutputKind<'f>[src]

impl<'f> Hash for OutputKind<'f>[src]

impl<'f> PartialEq<OutputKind<'f>> for OutputKind<'f>[src]

impl<'f> StructuralEq for OutputKind<'f>[src]

impl<'f> StructuralPartialEq for OutputKind<'f>[src]

Auto Trait Implementations

impl<'f> RefUnwindSafe for OutputKind<'f>

impl<'f> Send for OutputKind<'f>

impl<'f> Sync for OutputKind<'f>

impl<'f> Unpin for OutputKind<'f>

impl<'f> UnwindSafe for OutputKind<'f>

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.