Struct sp_core::defer::DeferGuard
source · pub struct DeferGuard<F: FnOnce()>(pub Option<F>);
Expand description
Executes the wrapped closure on drop.
Should be used together with the crate::defer!
macro.
Tuple Fields§
§0: Option<F>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<F> RefUnwindSafe for DeferGuard<F>where F: RefUnwindSafe,
impl<F> Send for DeferGuard<F>where F: Send,
impl<F> Sync for DeferGuard<F>where F: Sync,
impl<F> Unpin for DeferGuard<F>where F: Unpin,
impl<F> UnwindSafe for DeferGuard<F>where F: UnwindSafe,
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> 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<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.