[][src]Enum log_types::Span

pub enum Span {
    End,
    Start,
}

Delimit a span.

Spans delimit two arbitrary points in time. Usually a measurement between those two points points to something useful.

The key of this enum is serialized as span_mark, the value is either start or end.

Variants

End

Marks the end of a span.

Start

Marks the start of a span.

Trait Implementations

impl Debug for Span[src]

impl Source for Span[src]

fn get(&'v self, key: Key) -> Option<Value<'v>>[src]

Get the value for a given key. Read more

impl ToKey for Span[src]

impl ToValue for Span[src]

Auto Trait Implementations

impl Send for Span

impl Unpin for Span

impl Sync for Span

impl UnwindSafe for Span

impl RefUnwindSafe for Span

Blanket Implementations

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]