pub struct MeRefMutHandle<'a> { /* private fields */ }
Implementations§
Source§impl<'a> MeRefMutHandle<'a>
impl<'a> MeRefMutHandle<'a>
pub fn entrance<U>(&mut self, content: U) -> MeCell<U>
pub fn another<'b, U>(&'b self, another: &'b MeCell<U>) -> MeRef<'b, U>where
'a: 'b,
pub fn another_mut<'b, U>(
&'b mut self,
another: &'b MeCell<U>,
) -> MeRefMut<'b, U>where
'a: 'b,
pub unsafe fn another_mut_unsafe<'b, 'c, U>(
&'b mut self,
another: &'c MeCell<U>,
) -> MeRefMut<'c, U>where
'a: 'b,
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for MeRefMutHandle<'a>
impl<'a> !RefUnwindSafe for MeRefMutHandle<'a>
impl<'a> !Send for MeRefMutHandle<'a>
impl<'a> !Sync for MeRefMutHandle<'a>
impl<'a> Unpin for MeRefMutHandle<'a>
impl<'a> !UnwindSafe for MeRefMutHandle<'a>
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