logo
pub trait ZeroizeOnDrop { }
Expand description

Marker trait signifying that this type will zeroize itself on Drop.

Implementations on Foreign Types

Implement ZeroizeOnDrop on arrays of types that impl ZeroizeOnDrop

PhantomData is always zero sized so provide a ZeroizeOnDrop implementation.

PhantomPinned is zero sized so provide a ZeroizeOnDrop implementation.

() is zero sized so provide a ZeroizeOnDrop implementation.

Generic implementation of ZeroizeOnDrop for tuples up to 10 parameters.

Implementors