Struct nekolib_doc::corro::DormantMutRef

source ·
pub struct DormantMutRef<'a, T> { /* private fields */ }
Expand description
struct Base {
    buf: Vec<String>,
    len: usize, // some other data
}

enum Entry<'a> {
    Occupied(OccupiedEntry<'a>),
    Vacant(VacantEntry),
}
use Entry::Occupied;

struct OccupiedEntry<'a> {
    handle: &'a mut String,
    base: &'a mut Base,
}
struct VacantEntry;

impl Base {
    pub fn new() -> Self { Self { buf: vec![], len: 0 } }
    pub fn entry(&mut self, key: usize) -> Entry {
        match self.buf.get_mut(key) {
            Some(handle) => Occupied(OccupiedEntry { base: self, handle }),
            None => unimplemented!(),
        }
    }
}
error[E0499]: cannot borrow `*self` as mutable more than once at a time
  --> src/lib.rs:26:60
   |
22 |     pub fn entry(&mut self, key: usize) -> Entry {
   |                  - let's call the lifetime of this reference `'1`
23 |         match self.buf.get_mut(key) {
   |               --------------------- first mutable borrow occurs here
24 |             Some(handle) => Occupied(OccupiedEntry { base: self, handle }),
   |                             -------------------------------^^^^-----------
   |                             |                              |
   |                             |                              second mutable borrow occurs here
   |                             returning this value requires that `self.buf` is borrowed for `'1`

§References

Implementations§

source§

impl<'a, T> DormantMutRef<'a, T>

source

pub fn new(t: &'a mut T) -> (&'a mut T, DormantMutRef<'a, T>)

source

pub unsafe fn awaken(self) -> &'a mut T

source

pub unsafe fn reborrow(&mut self) -> &'a mut T

source

pub unsafe fn reborrow_shared(&self) -> &'a T

Trait Implementations§

source§

impl<'a, T> Send for DormantMutRef<'a, T>
where &'a mut T: Send,

source§

impl<'a, T> Sync for DormantMutRef<'a, T>
where &'a mut T: Sync,

Auto Trait Implementations§

§

impl<'a, T> Freeze for DormantMutRef<'a, T>

§

impl<'a, T> RefUnwindSafe for DormantMutRef<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Unpin for DormantMutRef<'a, T>

§

impl<'a, T> !UnwindSafe for DormantMutRef<'a, T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V