proptest-arbitrary 0.2.2

The Arbitrary trait for proptest and implementations for the standard library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Arbitrary implementations for `std::rc`.

use std::rc::Rc;

// Weak would always give None on upgrade since there's no owned Rc.

wrap_from!(Rc);

#[cfg(test)]
mod test {
    no_panic_test!(rc => Rc<u8>);
}