]> git.proxmox.com Git - cargo.git/blob - vendor/proptest/src/arbitrary/sample.rs
New upstream version 0.37.0
[cargo.git] / vendor / proptest / src / arbitrary / sample.rs
1 //-
2 // Copyright 2018 The proptest developers
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 use crate::arbitrary::Arbitrary;
11 use crate::sample::{Index, IndexStrategy, Selector, SelectorStrategy};
12
13 impl Arbitrary for Index {
14 type Parameters = ();
15
16 type Strategy = IndexStrategy;
17
18 fn arbitrary_with(_: ()) -> IndexStrategy {
19 IndexStrategy::new()
20 }
21 }
22
23 impl Arbitrary for Selector {
24 type Parameters = ();
25
26 type Strategy = SelectorStrategy;
27
28 fn arbitrary_with(_: ()) -> SelectorStrategy {
29 SelectorStrategy::new()
30 }
31 }