pub enum StableIdError {
Empty,
TooLong,
InvalidCharacter,
}Variants§
Trait Implementations§
Source§impl Clone for StableIdError
impl Clone for StableIdError
Source§fn clone(&self) -> StableIdError
fn clone(&self) -> StableIdError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for StableIdError
Source§impl Debug for StableIdError
impl Debug for StableIdError
Source§impl<'de> Deserialize<'de> for StableIdError
impl<'de> Deserialize<'de> for StableIdError
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 StableIdError
impl Display for StableIdError
impl Eq for StableIdError
Source§impl Error for StableIdError
impl Error for StableIdError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 for StableIdError
impl PartialEq for StableIdError
Source§impl Serialize for StableIdError
impl Serialize for StableIdError
impl StructuralPartialEq for StableIdError
Auto Trait Implementations§
impl Freeze for StableIdError
impl RefUnwindSafe for StableIdError
impl Send for StableIdError
impl Sync for StableIdError
impl Unpin for StableIdError
impl UnsafeUnpin for StableIdError
impl UnwindSafe for StableIdError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more