[][src]Enum ichen_openprotocol::OpenProtocolError

pub enum OpenProtocolError<'a> {
    EmptyField(Cow<'a, str>),
    InvalidField {
        field: Cow<'a, str>,
        value: Cow<'a, str>,
        description: Cow<'a, str>,
    },
    ConstraintViolated(Cow<'a, str>),
    JsonError(Error),
}

Result error type.

Variants

EmptyField(Cow<'a, str>)

The value of a field is the empty string "" or all white-spaces, which is not allowed as value of that field.

InvalidField

The value (second parameter) of a field (first parameter) is not valid for that field.

The strings are Box'ed to make the enum small.

Fields of InvalidField

field: Cow<'a, str>value: Cow<'a, str>description: Cow<'a, str>
ConstraintViolated(Cow<'a, str>)

An enforced constraint is broken.

The string is Box'ed to make the enum small.

JsonError(Error)

Error when serializing/deserializing JSON.

Trait Implementations

impl<'_> Display for OpenProtocolError<'_>[src]

impl<'a> Debug for OpenProtocolError<'a>[src]

impl<'_> Error for OpenProtocolError<'_>[src]

fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]

The lower-level source of this error, if any. Read more

Auto Trait Implementations

impl<'a> Sync for OpenProtocolError<'a>

impl<'a> Send for OpenProtocolError<'a>

impl<'a> Unpin for OpenProtocolError<'a>

impl<'a> !RefUnwindSafe for OpenProtocolError<'a>

impl<'a> !UnwindSafe for OpenProtocolError<'a>

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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