pub enum ArenaError {
Full,
InvalidRef,
InvalidUtf8,
LayoutMismatch,
ReadOnly,
IoError(ErrorKind),
}Variants§
Full
InvalidRef
InvalidUtf8
LayoutMismatch
ReadOnly
The arena was opened read-only and something tried to write it.
IoError(ErrorKind)
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
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