[][src]Enum psi::error::PsiError

pub enum PsiError {
    IoError(Error),
    PsiParseError(ParseError),
    InvalidThreshold(Error),
    UnexpectedTriggerEvent {
        expected_kind: PsiKind,
        expected_line: PsiLine,
    },
    UnregisteredEvent,
    PsiTriggerFileError,
    LoggingInitError(SetLoggerError),
}

Error type for PSI

Variants

IoError(Error)
PsiParseError(ParseError)
InvalidThreshold(Error)
UnexpectedTriggerEvent

Fields of UnexpectedTriggerEvent

expected_kind: PsiKindexpected_line: PsiLine
UnregisteredEvent
PsiTriggerFileError
LoggingInitError(SetLoggerError)

Trait Implementations

impl From<ParseError> for PsiError[src]

impl From<Error> for PsiError[src]

impl From<ParseFloatError> for PsiError[src]

impl From<ParseIntError> for PsiError[src]

impl From<SetLoggerError> for PsiError[src]

impl Display for PsiError[src]

impl Debug for PsiError[src]

impl Error for PsiError[src]

Auto Trait Implementations

impl Send for PsiError

impl Sync for PsiError

impl Unpin for PsiError

impl !UnwindSafe for PsiError

impl !RefUnwindSafe for PsiError

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[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]