Enum repr::adt::array::InvalidArrayError [−][src]
pub enum InvalidArrayError {
TooManyDimensions(usize),
WrongCardinality {
actual: usize,
expected: usize,
},
}Expand description
An error that can occur when constructing an array.
Variants
TooManyDimensions(usize)
Tuple Fields
0: usizeThe number of dimensions in the array exceedes [MAX_ARRAY_DIMENSIONS].
WrongCardinality
The number of array elements does not match the cardinality derived from its dimensions.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Adds names and types of the fields of the struct or enum to rti. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for InvalidArrayError
impl Send for InvalidArrayError
impl Sync for InvalidArrayError
impl Unpin for InvalidArrayError
impl UnwindSafe for InvalidArrayError
Blanket Implementations
Mutably borrows from an owned value. Read more
Formats an object with the “alternative” format ({:#}) and returns it.
Compare self to key and return true if they are equal.
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