Home
last modified time | relevance | path

Searched refs:RandomlyConstructable (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/ring/src/
Drand.rs50 pub struct Random<T: RandomlyConstructable>(T);
52 impl<T: RandomlyConstructable> Random<T> {
62 pub fn generate<T: RandomlyConstructable>( in generate()
66 T: RandomlyConstructable, in generate() argument
81 pub trait RandomlyConstructable: Sized { interface
89 impl RandomlyConstructable for [u8; $len] { impl
104 pub trait RandomlyConstructable: self::sealed::RandomlyConstructable {} trait
105 impl<T> RandomlyConstructable for T where T: self::sealed::RandomlyConstructable {}