pub struct SamplerChoice<C> {
    pub choices: Vec<C>,
}Expand description
See sampler_choice.
Fields§
§choices: Vec<C>Implementations§
Source§impl<C> SamplerChoice<C>
 
impl<C> SamplerChoice<C>
Trait Implementations§
Source§impl<C: Clone> Clone for SamplerChoice<C>
 
impl<C: Clone> Clone for SamplerChoice<C>
Source§fn clone(&self) -> SamplerChoice<C>
 
fn clone(&self) -> SamplerChoice<C>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl<C: Debug> Debug for SamplerChoice<C>
 
impl<C: Debug> Debug for SamplerChoice<C>
Source§impl<C, T> Sample for SamplerChoice<C>
 
impl<C, T> Sample for SamplerChoice<C>
type Output = T
Source§fn shrink(&self, v: Self::Output) -> Shrunk<'_, Self::Output>
 
fn shrink(&self, v: 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<C> Freeze for SamplerChoice<C>
impl<C> RefUnwindSafe for SamplerChoice<C>where
    C: RefUnwindSafe,
impl<C> Send for SamplerChoice<C>where
    C: Send,
impl<C> Sync for SamplerChoice<C>where
    C: Sync,
impl<C> Unpin for SamplerChoice<C>where
    C: Unpin,
impl<C> UnwindSafe for SamplerChoice<C>where
    C: 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