Struct bonsaidb_core::schema::InvalidNameError
source · pub struct InvalidNameError(pub String);
Expand description
A name was unable to e parsed.
Tuple Fields§
§0: String
Trait Implementations§
source§impl Clone for InvalidNameError
impl Clone for InvalidNameError
source§fn clone(&self) -> InvalidNameError
fn clone(&self) -> InvalidNameError
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 InvalidNameError
impl Debug for InvalidNameError
source§impl<'de> Deserialize<'de> for InvalidNameError
impl<'de> Deserialize<'de> for InvalidNameError
source§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
source§impl Display for InvalidNameError
impl Display for InvalidNameError
source§impl Error for InvalidNameError
impl Error for InvalidNameError
1.30.0 · 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 From<InvalidNameError> for Error
impl From<InvalidNameError> for Error
source§fn from(source: InvalidNameError) -> Self
fn from(source: InvalidNameError) -> Self
Converts to this type from the input type.