[−][src]Struct clear_on_drop::ClearOnDrop
Zeroizes a storage location when dropped.
This struct contains a reference to a memory location, either as a
mutable borrow (&mut T
), or as a owned container (Box<T>
or
similar). When this struct is dropped, the referenced location is
overwritten with its Default
value.
Example
#[derive(Default)] struct MyData { value: u32, } let mut place = MyData { value: 0 }; { let mut key = ClearOnDrop::new(&mut place); key.value = 0x01234567; // ... } // key is dropped here assert_eq!(place.value, 0);
Methods
impl<P> ClearOnDrop<P> where
P: DerefMut,
P::Target: Clear,
[src][−]
P: DerefMut,
P::Target: Clear,
pub fn new(place: P) -> Self
[src][−]
Creates a new ClearOnDrop
which clears place
on drop.
The place
parameter can be a &mut T
, a Box<T>
, or other
containers which behave like Box<T>
.
Note: only the first level of dereference will be cleared. Do
not use &mut Box<T>
or similar as the place, since the heap
contents won't be cleared in that case. If you need the place
back, use ClearOnDrop::into_place(...)
instead of a borrow.
pub fn into_place(c: Self) -> P
[src][−]
Consumes the ClearOnDrop
, returning the place
after clearing.
Note: this is an associated function, which means that you have
to call it as ClearOnDrop::into_place(c)
instead of
c.into_place()
. This is so that there is no conflict with a
method on the inner type.
pub fn into_uncleared_place(c: Self) -> P
[src][−]
Consumes the ClearOnDrop
, returning the place
without clearing.
Note: this is an associated function, which means that you have
to call it as ClearOnDrop::into_uncleared_place(c)
instead of
c.into_uncleared_place()
. This is so that there is no conflict
with a method on the inner type.
Trait Implementations
impl<P> Debug for ClearOnDrop<P> where
P: DerefMut + Debug,
P::Target: Clear,
[src][+]
P: DerefMut + Debug,
P::Target: Clear,
impl<P, Q> PartialEq<ClearOnDrop<Q>> for ClearOnDrop<P> where
P: DerefMut + PartialEq<Q>,
P::Target: Clear,
Q: DerefMut,
Q::Target: Clear,
[src][+]
P: DerefMut + PartialEq<Q>,
P::Target: Clear,
Q: DerefMut,
Q::Target: Clear,
impl<P> Eq for ClearOnDrop<P> where
P: DerefMut + Eq,
P::Target: Clear,
[src]
P: DerefMut + Eq,
P::Target: Clear,
impl<P> Ord for ClearOnDrop<P> where
P: DerefMut + Ord,
P::Target: Clear,
[src][+]
P: DerefMut + Ord,
P::Target: Clear,
impl<P, Q> PartialOrd<ClearOnDrop<Q>> for ClearOnDrop<P> where
P: DerefMut + PartialOrd<Q>,
P::Target: Clear,
Q: DerefMut,
Q::Target: Clear,
[src][+]
P: DerefMut + PartialOrd<Q>,
P::Target: Clear,
Q: DerefMut,
Q::Target: Clear,
impl<P> Deref for ClearOnDrop<P> where
P: DerefMut,
P::Target: Clear,
[src][+]
P: DerefMut,
P::Target: Clear,
impl<P> DerefMut for ClearOnDrop<P> where
P: DerefMut,
P::Target: Clear,
[src][+]
P: DerefMut,
P::Target: Clear,
impl<P> Drop for ClearOnDrop<P> where
P: DerefMut,
P::Target: Clear,
[src][+]
P: DerefMut,
P::Target: Clear,
impl<P> Hash for ClearOnDrop<P> where
P: DerefMut + Hash,
P::Target: Clear,
[src][+]
P: DerefMut + Hash,
P::Target: Clear,
impl<P, T: ?Sized> AsRef<T> for ClearOnDrop<P> where
P: DerefMut + AsRef<T>,
P::Target: Clear,
[src][+]
P: DerefMut + AsRef<T>,
P::Target: Clear,
impl<P, T: ?Sized> AsMut<T> for ClearOnDrop<P> where
P: DerefMut + AsMut<T>,
P::Target: Clear,
[src][+]
P: DerefMut + AsMut<T>,
P::Target: Clear,
impl<P> Clone for ClearOnDrop<P> where
P: DerefMut + Clone,
P::Target: Clear,
[src][+]
P: DerefMut + Clone,
P::Target: Clear,
impl<P, T: ?Sized> Borrow<T> for ClearOnDrop<P> where
P: DerefMut + Borrow<T>,
P::Target: Clear,
T: Clear,
[src][+]
P: DerefMut + Borrow<T>,
P::Target: Clear,
T: Clear,
impl<P, T: ?Sized> BorrowMut<T> for ClearOnDrop<P> where
P: DerefMut + BorrowMut<T>,
P::Target: Clear,
T: Clear,
[src][+]
P: DerefMut + BorrowMut<T>,
P::Target: Clear,
T: Clear,
Auto Trait Implementations
impl<P> Unpin for ClearOnDrop<P> where
P: Unpin,
P: Unpin,
impl<P> Send for ClearOnDrop<P> where
P: Send,
P: Send,
impl<P> Sync for ClearOnDrop<P> where
P: Sync,
P: Sync,
Blanket Implementations
impl<T> From<T> for T
[src][+]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,