Trait trackable::error::IntoTrackableError [] [src]

pub trait IntoTrackableError<From>: Sized {
    fn into_trackable_error(f: From) -> TrackableError<Self>;
}

This trait allows to construct TrackableError<Self> via a conversion from From.

Required Methods

Converts from From to TrackableError<Self>.

Implementors