pub enum ArenaSeedError {
TooManySlots,
FreeOutOfBounds,
InvalidFreeSlot,
MissingFreeSlot,
}Variants§
Trait Implementations§
Source§impl Clone for ArenaSeedError
impl Clone for ArenaSeedError
Source§fn clone(&self) -> ArenaSeedError
fn clone(&self) -> ArenaSeedError
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 ArenaSeedError
Source§impl Debug for ArenaSeedError
impl Debug for ArenaSeedError
Source§impl Display for ArenaSeedError
impl Display for ArenaSeedError
impl Eq for ArenaSeedError
Source§impl Error for ArenaSeedError
impl Error for ArenaSeedError
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 PartialEq for ArenaSeedError
impl PartialEq for ArenaSeedError
impl StructuralPartialEq for ArenaSeedError
Auto Trait Implementations§
impl Freeze for ArenaSeedError
impl RefUnwindSafe for ArenaSeedError
impl Send for ArenaSeedError
impl Sync for ArenaSeedError
impl Unpin for ArenaSeedError
impl UnsafeUnpin for ArenaSeedError
impl UnwindSafe for ArenaSeedError
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