pub struct BTreeEmptyError;Expand description
An error returned when an operation associated with BTreeMap1 would result in it being empty.
Trait Implementations§
Source§impl Clone for BTreeEmptyError
impl Clone for BTreeEmptyError
Source§fn clone(&self) -> BTreeEmptyError
fn clone(&self) -> BTreeEmptyError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BTreeEmptyError
impl Debug for BTreeEmptyError
Source§impl Display for BTreeEmptyError
impl Display for BTreeEmptyError
Source§impl Error for BTreeEmptyError
impl Error for BTreeEmptyError
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 BTreeEmptyError
impl PartialEq for BTreeEmptyError
impl Eq for BTreeEmptyError
impl StructuralPartialEq for BTreeEmptyError
Auto Trait Implementations§
impl Freeze for BTreeEmptyError
impl RefUnwindSafe for BTreeEmptyError
impl Send for BTreeEmptyError
impl Sync for BTreeEmptyError
impl Unpin for BTreeEmptyError
impl UnwindSafe for BTreeEmptyError
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