Trait IntoTimes

Source
pub trait IntoTimes: Sealed {
    // Required method
    fn into_times(self) -> (Bound<usize>, Bound<usize>);
}
Expand description

How many times is an expectation expected to occur. Implemented for usize and any range of usize values.

Required Methods§

Source

fn into_times(self) -> (Bound<usize>, Bound<usize>)

Provide the lower and upper bounds.

Implementations on Foreign Types§

Source§

impl IntoTimes for (Bound<&usize>, Bound<&usize>)

Source§

impl IntoTimes for (Bound<usize>, Bound<usize>)

Source§

impl IntoTimes for usize

Source§

impl IntoTimes for Range<&usize>

Source§

impl IntoTimes for Range<usize>

Source§

impl IntoTimes for RangeFrom<&usize>

Source§

impl IntoTimes for RangeFrom<usize>

Source§

impl IntoTimes for RangeFull

Source§

impl IntoTimes for RangeInclusive<&usize>

Source§

impl IntoTimes for RangeInclusive<usize>

Source§

impl IntoTimes for RangeTo<&usize>

Source§

impl IntoTimes for RangeTo<usize>

Source§

impl IntoTimes for RangeToInclusive<&usize>

Source§

impl IntoTimes for RangeToInclusive<usize>

Implementors§