// Extracted from the scopeguard crate use core::ops::{Deref, DerefMut}; pub struct ScopeGuard where F: FnMut(&mut T), { dropfn: F, value: T, } #[cfg_attr(feature = "inline-more", inline)] pub fn guard(value: T, dropfn: F) -> ScopeGuard where F: FnMut(&mut T), { ScopeGuard { dropfn, value } } impl Deref for ScopeGuard where F: FnMut(&mut T), { type Target = T; #[cfg_attr(feature = "inline-more", inline)] fn deref(&self) -> &T { &self.value } } impl DerefMut for ScopeGuard where F: FnMut(&mut T), { #[cfg_attr(feature = "inline-more", inline)] fn deref_mut(&mut self) -> &mut T { &mut self.value } } impl Drop for ScopeGuard where F: FnMut(&mut T), { #[cfg_attr(feature = "inline-more", inline)] fn drop(&mut self) { (self.dropfn)(&mut self.value) } }