[−][src]Struct proptest::option::Probability
A probability in the range [0.0, 1.0]
with a default of 0.5
.
Methods
impl Probability
[src]
pub fn new(prob: f64) -> Self
[src]
pub fn with<X>(self, and: X) -> (Self, X)
[src]
Merges self together with some other argument producing a product
type expected by some impelementations of A: Arbitrary
in
A::Parameters
. This can be more ergonomic to work with and may
help type inference.
pub fn lift<X: Default>(self) -> (Self, X)
[src]
Merges self together with some other argument generated with a
default value producing a product type expected by some
impelementations of A: Arbitrary
in A::Parameters
.
This can be more ergonomic to work with and may help type inference.
Trait Implementations
impl Arbitrary for Probability
[src]
type Parameters = ()
The type of parameters that [arbitrary_with
] accepts for configuration of the generated [Strategy
]. Parameters must implement [Default
]. Read more
type Strategy = MapInto<RangeInclusive<f64>, Self>
The type of [Strategy
] used to generate values of type Self
. Read more
fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy
[src]
fn arbitrary() -> Self::Strategy
[src]
Generates a [Strategy
] for producing arbitrary values of type the implementing type (Self
). Read more
impl Clone for Probability
[src]
fn clone(&self) -> Probability
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Copy for Probability
[src]
impl PartialEq<Probability> for Probability
[src]
fn eq(&self, other: &Probability) -> bool
[src]
fn ne(&self, other: &Probability) -> bool
[src]
impl Debug for Probability
[src]
impl From<f64> for Probability
[src]
impl From<Probability> for f64
[src]
fn from(p: Probability) -> Self
[src]
impl Default for Probability
[src]
Auto Trait Implementations
impl Send for Probability
impl Sync for Probability
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,