pub enum RegionError {
Full,
InvalidPtr,
PayloadTooLarge,
LayoutMismatch,
IoError(ErrorKind),
}Variants§
Trait Implementations§
Source§impl Clone for RegionError
impl Clone for RegionError
Source§fn clone(&self) -> RegionError
fn clone(&self) -> RegionError
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 RegionError
Source§impl Debug for RegionError
impl Debug for RegionError
impl Eq for RegionError
Source§impl From<Error> for RegionError
impl From<Error> for RegionError
Source§impl From<RegionError> for CascadeError
impl From<RegionError> for CascadeError
Source§fn from(e: RegionError) -> Self
fn from(e: RegionError) -> Self
Converts to this type from the input type.
Source§impl From<RegionError> for GraphError
impl From<RegionError> for GraphError
Source§fn from(e: RegionError) -> Self
fn from(e: RegionError) -> Self
Converts to this type from the input type.
Source§impl From<RegionError> for LinkedListError
impl From<RegionError> for LinkedListError
Source§fn from(e: RegionError) -> Self
fn from(e: RegionError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RegionError
impl PartialEq for RegionError
impl StructuralPartialEq for RegionError
Auto Trait Implementations§
impl Freeze for RegionError
impl RefUnwindSafe for RegionError
impl Send for RegionError
impl Sync for RegionError
impl Unpin for RegionError
impl UnsafeUnpin for RegionError
impl UnwindSafe for RegionError
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