pub enum BTreeError {
Full,
LayoutMismatch,
InvalidConfig,
IoError(ErrorKind),
}Variants§
Trait Implementations§
Source§impl Clone for BTreeError
impl Clone for BTreeError
Source§fn clone(&self) -> BTreeError
fn clone(&self) -> BTreeError
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 BTreeError
Source§impl Debug for BTreeError
impl Debug for BTreeError
impl Eq for BTreeError
Source§impl From<Error> for BTreeError
impl From<Error> for BTreeError
Source§impl PartialEq for BTreeError
impl PartialEq for BTreeError
impl StructuralPartialEq for BTreeError
Auto Trait Implementations§
impl Freeze for BTreeError
impl RefUnwindSafe for BTreeError
impl Send for BTreeError
impl Sync for BTreeError
impl Unpin for BTreeError
impl UnsafeUnpin for BTreeError
impl UnwindSafe for BTreeError
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