pub enum KeyFromStrError {
EmptyString,
NoKey,
EmptyKey,
InvalidKey(String),
InvalidRepeat(String),
InvalidModifier(String),
InvalidMode(String),
}Variants§
EmptyString
NoKey
EmptyKey
InvalidKey(String)
InvalidRepeat(String)
InvalidModifier(String)
InvalidMode(String)
Trait Implementations§
Source§impl Clone for KeyFromStrError
impl Clone for KeyFromStrError
Source§fn clone(&self) -> KeyFromStrError
fn clone(&self) -> KeyFromStrError
Returns a duplicate 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 KeyFromStrError
impl Debug for KeyFromStrError
Source§impl Display for KeyFromStrError
impl Display for KeyFromStrError
Source§impl Error for KeyFromStrError
impl Error for KeyFromStrError
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()
Auto Trait Implementations§
impl Freeze for KeyFromStrError
impl RefUnwindSafe for KeyFromStrError
impl Send for KeyFromStrError
impl Sync for KeyFromStrError
impl Unpin for KeyFromStrError
impl UnwindSafe for KeyFromStrError
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