Enum sea_orm_rocket::figment::error::Kind[]

pub enum Kind {
    Message(String),
    InvalidType(ActualString),
    InvalidValue(ActualString),
    InvalidLength(usizeString),
    UnknownVariant(String&'static [&'static str]),
    UnknownField(String&'static [&'static str]),
    MissingField(Cow<'static, str>),
    DuplicateField(&'static str),
    ISizeOutOfRange(isize),
    USizeOutOfRange(usize),
    Unsupported(Actual),
    UnsupportedKey(ActualCow<'static, str>),
}
Expand description

An error kind, encapsulating serde’s [serde::de::Error].

Variants

Message(String)

Tuple Fields

0: String

A custom error message.

InvalidType(ActualString)

Tuple Fields

0: Actual
1: String

An invalid type: (actual, expected). See [serde::de::Error::invalid_type()].

InvalidValue(ActualString)

Tuple Fields

0: Actual
1: String

An invalid value: (actual, expected). See [serde::de::Error::invalid_value()].

InvalidLength(usizeString)

Tuple Fields

0: usize
1: String

Too many or too few items: (actual, expected). See [serde::de::Error::invalid_length()].

UnknownVariant(String&'static [&'static str])

Tuple Fields

0: String
1: &'static [&'static str]

A variant with an unrecognized name: (actual, expected). See [serde::de::Error::unknown_variant()].

UnknownField(String&'static [&'static str])

Tuple Fields

0: String
1: &'static [&'static str]

A field with an unrecognized name: (actual, expected). See [serde::de::Error::unknown_field()].

MissingField(Cow<'static, str>)

Tuple Fields

0: Cow<'static, str>

A field was missing: (name). See [serde::de::Error::missing_field()].

DuplicateField(&'static str)

Tuple Fields

0: &'static str

A field appeared more than once: (name). See [serde::de::Error::duplicate_field()].

ISizeOutOfRange(isize)

Tuple Fields

0: isize

The isize was not in range of any known sized signed integer.

USizeOutOfRange(usize)

Tuple Fields

0: usize

The usize was not in range of any known sized unsigned integer.

Unsupported(Actual)

Tuple Fields

0: Actual

The serializer or deserializer does not support the Actual type.

UnsupportedKey(ActualCow<'static, str>)

Tuple Fields

0: Actual
1: Cow<'static, str>

The type .0 cannot be used for keys, need a .1.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Converts self into a collection.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more