Struct sample_std::TryConvert
source · pub struct TryConvert<P, F, I> {
pub inner: P,
/* private fields */
}
Expand description
See Sample::try_convert
.
Fields§
§inner: P
Trait Implementations§
source§impl<P: Clone, F: Clone, I: Clone> Clone for TryConvert<P, F, I>
impl<P: Clone, F: Clone, I: Clone> Clone for TryConvert<P, F, I>
source§fn clone(&self) -> TryConvert<P, F, I>
fn clone(&self) -> TryConvert<P, F, I>
Returns a copy 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<P, F, I, T> Sample for TryConvert<P, F, I>
impl<P, F, I, T> Sample for TryConvert<P, F, I>
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<P, F, I> RefUnwindSafe for TryConvert<P, F, I>
impl<P, F, I> Send for TryConvert<P, F, I>
impl<P, F, I> Sync for TryConvert<P, F, I>
impl<P, F, I> Unpin for TryConvert<P, F, I>
impl<P, F, I> UnwindSafe for TryConvert<P, F, I>
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