pub enum SeqMapError {
KeyAlreadyExists,
}
Expand description
Errors that can occur when manipulating a SeqMap
.
Variants§
KeyAlreadyExists
Occurs when attempting to insert a key that already exists in the map.
Trait Implementations§
Source§impl Debug for SeqMapError
impl Debug for SeqMapError
Source§impl Display for SeqMapError
impl Display for SeqMapError
Source§impl Error for SeqMapError
impl Error for SeqMapError
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 SeqMapError
impl RefUnwindSafe for SeqMapError
impl Send for SeqMapError
impl Sync for SeqMapError
impl Unpin for SeqMapError
impl UnwindSafe for SeqMapError
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