pub enum BorrowMutError {
Dropped(ValueDroppedError),
AlreadyBorrowed(AlreadyBorrowedError),
AlreadyBorrowedMut(AlreadyBorrowedMutError),
}
Expand description
An error that can occur when trying to borrow a value mutably.
Variants§
Dropped(ValueDroppedError)
The value was dropped.
AlreadyBorrowed(AlreadyBorrowedError)
The value was already borrowed.
AlreadyBorrowedMut(AlreadyBorrowedMutError)
The value was already borrowed mutably.
Trait Implementations§
source§impl Clone for BorrowMutError
impl Clone for BorrowMutError
source§fn clone(&self) -> BorrowMutError
fn clone(&self) -> BorrowMutError
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 BorrowMutError
impl Debug for BorrowMutError
source§impl Display for BorrowMutError
impl Display for BorrowMutError
source§impl Error for BorrowMutError
impl Error for BorrowMutError
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 From<BorrowError> for BorrowMutError
impl From<BorrowError> for BorrowMutError
source§fn from(error: BorrowError) -> BorrowMutError
fn from(error: BorrowError) -> BorrowMutError
Converts to this type from the input type.
source§impl PartialEq for BorrowMutError
impl PartialEq for BorrowMutError
impl StructuralPartialEq for BorrowMutError
Auto Trait Implementations§
impl Freeze for BorrowMutError
impl RefUnwindSafe for BorrowMutError
impl Send for BorrowMutError
impl Sync for BorrowMutError
impl Unpin for BorrowMutError
impl UnwindSafe for BorrowMutError
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> InitializeFromFunction<T> for T
impl<T> InitializeFromFunction<T> for T
source§fn initialize_from_function(f: fn() -> T) -> T
fn initialize_from_function(f: fn() -> T) -> T
Create an instance of this type from an initialization function
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<Ret> SpawnIfAsync<(), Ret> for Ret
impl<Ret> SpawnIfAsync<(), Ret> for Ret
source§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
source§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Convert from a type to another type.
source§impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
source§fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.