Enum trackable::error::Event [] [src]

pub enum Event {
    Track(Location),
    TakeOver(Arc<BoxErrorKind>),
}

An event that occurred on an instance of TrackableError.

Variants

The location was saved in the history of error instance.

The old error instance with the kind BoxErrorKind was taken over.

Trait Implementations

impl Debug for Event
[src]

[src]

Formats the value using the given formatter.

impl Clone for Event
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for Event
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Location> for Event
[src]

[src]

Performs the conversion.