pub struct Always<T>(pub T);Expand description
Sampler that always generates a fixed value.
Tuple Fields§
§0: TTrait Implementations§
Source§impl<T: Clone> Sample for Always<T>
 
impl<T: Clone> Sample for Always<T>
type Output = T
Source§fn shrink(&self, _: Self::Output) -> Shrunk<'_, Self::Output>
 
fn shrink(&self, _: Self::Output) -> Shrunk<'_, Self::Output>
Shrink the given value into a “smaller” value. Defaults to an empty
iterator (which represents that the value cannot be shrunk).
Source§fn try_convert<T, I, F>(self, from: F, try_into: I) -> TryConvert<Self, F, I>
 
fn try_convert<T, I, F>(self, from: F, try_into: I) -> TryConvert<Self, F, I>
Source§fn zip<OS>(self, other: OS) -> Zip<Self, OS>
 
fn zip<OS>(self, other: OS) -> Zip<Self, OS>
“Zip” two samplers together. Functionally equivalent to 
(self, other).Source§fn chain_resample<F, RS>(
    self,
    transform: F,
    subsamples: usize,
) -> ChainResample<Self, F>
 
fn chain_resample<F, RS>( self, transform: F, subsamples: usize, ) -> ChainResample<Self, F>
“Resampling” method for chaining samplers. Read more
Auto Trait Implementations§
impl<T> Freeze for Always<T>where
    T: Freeze,
impl<T> RefUnwindSafe for Always<T>where
    T: RefUnwindSafe,
impl<T> Send for Always<T>where
    T: Send,
impl<T> Sync for Always<T>where
    T: Sync,
impl<T> Unpin for Always<T>where
    T: Unpin,
impl<T> UnwindSafe for Always<T>where
    T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more