pub enum ArrayMapError {
CapacityExceeded,
IndexOutOfBounds,
}Variants§
Trait Implementations§
Source§impl Clone for ArrayMapError
impl Clone for ArrayMapError
Source§fn clone(&self) -> ArrayMapError
fn clone(&self) -> ArrayMapError
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 ArrayMapError
Source§impl Debug for ArrayMapError
impl Debug for ArrayMapError
Source§impl Display for ArrayMapError
impl Display for ArrayMapError
impl Eq for ArrayMapError
Source§impl PartialEq for ArrayMapError
impl PartialEq for ArrayMapError
Source§fn eq(&self, other: &ArrayMapError) -> bool
fn eq(&self, other: &ArrayMapError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArrayMapError
Auto Trait Implementations§
impl Freeze for ArrayMapError
impl RefUnwindSafe for ArrayMapError
impl Send for ArrayMapError
impl Sync for ArrayMapError
impl Unpin for ArrayMapError
impl UnsafeUnpin for ArrayMapError
impl UnwindSafe for ArrayMapError
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