zerodrop 0.1.4

Zero boxed data when dropped. Nolonger maintained. Use ClearOnDrop at https://github.com/cesarb/clear_on_drop/ instead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2016 Jeffrey Burdges

//! Zeroing drop wrapper types.

#![feature(core_intrinsics)]

extern crate consistenttime;

mod zd;
//mod zdd;
mod cow;

pub use zd::ZeroDrop;
// pub use zdd::ZeroDropDrop;
pub use cow::ZeroDropCow;