Enum generational_box::BorrowError
source · pub enum BorrowError {
Dropped(ValueDroppedError),
AlreadyBorrowedMut(AlreadyBorrowedMutError),
}Expand description
An error that can occur when trying to borrow a value.
Variants§
Dropped(ValueDroppedError)
The value was dropped.
AlreadyBorrowedMut(AlreadyBorrowedMutError)
The value was already borrowed mutably.
Trait Implementations§
source§impl Clone for BorrowError
impl Clone for BorrowError
source§fn clone(&self) -> BorrowError
fn clone(&self) -> BorrowError
Returns a copy 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 BorrowError
impl Debug for BorrowError
source§impl Display for BorrowError
impl Display for BorrowError
source§impl Error for BorrowError
impl Error for BorrowError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
Auto Trait Implementations§
impl RefUnwindSafe for BorrowError
impl Send for BorrowError
impl Sync for BorrowError
impl Unpin for BorrowError
impl UnwindSafe for BorrowError
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