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