Enum config_encoder::ValueError
source · pub enum ValueError {
TypeMismatch {
expected: String,
received: String,
},
StringTooLong {
max: usize,
actual: usize,
},
VectorTooLong {
max: usize,
actual: usize,
},
VectorElementInvalid {
offset: usize,
source: Box<Self>,
},
}
Variants§
Trait Implementations§
source§impl Clone for ValueError
impl Clone for ValueError
source§fn clone(&self) -> ValueError
fn clone(&self) -> ValueError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ValueError
impl Debug for ValueError
source§impl Display for ValueError
impl Display for ValueError
source§impl Error for ValueError
impl Error for ValueError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq<ValueError> for ValueError
impl PartialEq<ValueError> for ValueError
source§fn eq(&self, other: &ValueError) -> bool
fn eq(&self, other: &ValueError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.