pub struct ScopeGuard<T, F: FnOnce(T, &S), S> { /* private fields */ }
Expand description
A guard that executes a callback on drop, using an associated state.
§Vendored
This is adapted work from stated-scope-guard.
Implementations§
Source§impl<T> ScopeGuard<T, fn(T, &bool), bool>
impl<T> ScopeGuard<T, fn(T, &bool), bool>
Sourcepub fn new<F: FnOnce(T)>(
value: T,
callback: F,
) -> ScopeGuard<T, impl FnOnce(T, &bool), bool>
pub fn new<F: FnOnce(T)>( value: T, callback: F, ) -> ScopeGuard<T, impl FnOnce(T, &bool), bool>
Constructs a scope guard with a boolean state (defaulting to true).
The callback is executed on drop unless dismissed.
§Example
let result = Cell::new(0);
{
let _guard = ScopeGuard::new(10, |value| {
result.set(value + 5);
});
}
assert_eq!(result.get(), 15);
Source§impl<T, F: FnOnce(T, &S), S> ScopeGuard<T, F, S>
impl<T, F: FnOnce(T, &S), S> ScopeGuard<T, F, S>
Sourcepub fn with(value: T, state: S, callback: F) -> Self
pub fn with(value: T, state: S, callback: F) -> Self
Creates a scope guard with a custom state.
The guarded value is accessible via Deref
and DerefMut
.
§Example
// A simple resource that requires cleanup.
struct Resource;
impl Resource {
fn new() -> Self { Resource }
/// Cleans up the resource using the given strategy, updating the flag accordingly.
fn cleanup(&self, strategy: &Cleanup, flag: &Cell<&'static str>) {
match strategy {
Cleanup::Standard => flag.set("standard cleanup"),
Cleanup::Alternate => flag.set("alternate cleanup"),
}
}
}
// Define different cleanup strategies.
enum Cleanup {
Standard,
Alternate,
}
let cleanup_flag = Cell::new("not cleaned");
{
let mut guard = ScopeGuard::with(
Resource::new(),
Cleanup::Standard,
|res, strategy| { res.cleanup(strategy, &cleanup_flag) }
);
// Perform operations that require changing the cleanup strategy.
guard.set_state(Cleanup::Alternate);
} // When the guard goes out of scope, it triggers the cleanup callback.
assert_eq!(cleanup_flag.get(), "alternate cleanup");
Trait Implementations§
Auto Trait Implementations§
impl<T, F, S> Freeze for ScopeGuard<T, F, S>
impl<T, F, S> RefUnwindSafe for ScopeGuard<T, F, S>
impl<T, F, S> Send for ScopeGuard<T, F, S>
impl<T, F, S> Sync for ScopeGuard<T, F, S>
impl<T, F, S> Unpin for ScopeGuard<T, F, S>
impl<T, F, S> UnwindSafe for ScopeGuard<T, F, 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
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
The alignment of this type in bytes.
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Returns the alignment of this type in bytes.
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
Returns a deterministic hash of the
TypeId
of Self
using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Know whether dropping values of this type matters, in compile-time.
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Returns the minimum alignment of the type in bytes. Read more
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Returns the alignment of the pointed-to value in bytes. Read more
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Returns the size of a type in bytes. Read more
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Returns the size of the pointed-to value in bytes. Read more
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
Returns
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
Forgets about
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
Available on crate feature
unsafe_layout
only.Returns the value of type
T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
Available on crate feature
unsafe_layout
only.Returns the value of type
T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
Available on crate feature
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T, U> ToSample<U> for Twhere
U: FromSample<T>,
impl<T, U> ToSample<U> for Twhere
U: FromSample<T>,
fn to_sample_(self) -> U
Source§impl<R> TryRngCore for R
impl<R> TryRngCore for R
Source§type Error = Infallible
type Error = Infallible
The type returned in the event of a RNG error.
Source§fn try_next_u32(&mut self) -> Result<u32, <R as TryRngCore>::Error> ⓘ
fn try_next_u32(&mut self) -> Result<u32, <R as TryRngCore>::Error> ⓘ
Return the next random
u32
.Source§fn try_next_u64(&mut self) -> Result<u64, <R as TryRngCore>::Error> ⓘ
fn try_next_u64(&mut self) -> Result<u64, <R as TryRngCore>::Error> ⓘ
Return the next random
u64
.Source§fn try_fill_bytes(
&mut self,
dst: &mut [u8],
) -> Result<(), <R as TryRngCore>::Error> ⓘ
fn try_fill_bytes( &mut self, dst: &mut [u8], ) -> Result<(), <R as TryRngCore>::Error> ⓘ
Fill
dest
entirely with random data.Source§fn unwrap_mut(&mut self) -> UnwrapMut<'_, Self>
fn unwrap_mut(&mut self) -> UnwrapMut<'_, Self>
Wrap RNG with the
UnwrapMut
wrapper.