pub struct Scope<'s> { /* private fields */ }
Expand description
Represents a scope within which, it is possible to take a T
from a &mut T
as long as the &mut T
outlives the scope.
Implementations§
Source§impl<'s> Scope<'s>
impl<'s> Scope<'s>
Sourcepub fn take_or_recover<'c, 'm: 's, T: 'm, F: FnOnce() -> T>(
&'c self,
mut_ref: &'m mut T,
recovery: F,
) -> (T, Hole<'c, 'm, T, F>)
pub fn take_or_recover<'c, 'm: 's, T: 'm, F: FnOnce() -> T>( &'c self, mut_ref: &'m mut T, recovery: F, ) -> (T, Hole<'c, 'm, T, F>)
Takes a (T, Hole<'c, 'm, T, F>)
from an &'m mut T
.
If the Hole
is dropped without being filled, either due to panic or forgetting to fill, will run the recovery
function to obtain a T
to fill itself with.
Auto Trait Implementations§
impl<'s> !Freeze for Scope<'s>
impl<'s> !RefUnwindSafe for Scope<'s>
impl<'s> Send for Scope<'s>
impl<'s> !Sync for Scope<'s>
impl<'s> Unpin for Scope<'s>
impl<'s> !UnwindSafe for Scope<'s>
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