pub enum MapPropertyError {
KeyNotFound,
InvalidType,
IndexOutOfBound,
MapError,
}
Variants§
Trait Implementations§
Source§impl Clone for MapPropertyError
impl Clone for MapPropertyError
Source§fn clone(&self) -> MapPropertyError
fn clone(&self) -> MapPropertyError
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 MapPropertyError
impl Debug for MapPropertyError
Source§impl Display for MapPropertyError
impl Display for MapPropertyError
Source§impl Error for MapPropertyError
impl Error for MapPropertyError
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 Hash for MapPropertyError
impl Hash for MapPropertyError
Source§impl Ord for MapPropertyError
impl Ord for MapPropertyError
Source§fn cmp(&self, other: &MapPropertyError) -> Ordering
fn cmp(&self, other: &MapPropertyError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MapPropertyError
impl PartialEq for MapPropertyError
Source§impl PartialOrd for MapPropertyError
impl PartialOrd for MapPropertyError
impl Copy for MapPropertyError
impl Eq for MapPropertyError
impl StructuralPartialEq for MapPropertyError
Auto Trait Implementations§
impl Freeze for MapPropertyError
impl RefUnwindSafe for MapPropertyError
impl Send for MapPropertyError
impl Sync for MapPropertyError
impl Unpin for MapPropertyError
impl UnwindSafe for MapPropertyError
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