Struct sample_arrow2::primitive::ProtoPrimitiveArray
source · pub struct ProtoPrimitiveArray<PT> { /* private fields */ }
Trait Implementations§
source§impl<PT: Clone> Clone for ProtoPrimitiveArray<PT>
impl<PT: Clone> Clone for ProtoPrimitiveArray<PT>
source§fn clone(&self) -> ProtoPrimitiveArray<PT>
fn clone(&self) -> ProtoPrimitiveArray<PT>
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<PT: Debug> Debug for ProtoPrimitiveArray<PT>
impl<PT: Debug> Debug for ProtoPrimitiveArray<PT>
source§impl<PT, T> Sample for ProtoPrimitiveArray<PT>where
PT: Sample<Output = T> + Clone + 'static,
T: NativeType,
impl<PT, T> Sample for ProtoPrimitiveArray<PT>where PT: Sample<Output = T> + Clone + 'static, T: NativeType,
type Output = PrimitiveArray<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>where
Self: Sized,
F: Fn(Self::Output) -> T + Copy,
I: Fn(T) -> Option<Self::Output>,
fn try_convert<T, I, F>(self, from: F, try_into: I) -> TryConvert<Self, F, I>where Self: Sized, F: Fn(Self::Output) -> T + Copy, I: Fn(T) -> Option<Self::Output>,
source§fn zip<OS>(self, other: OS) -> Zip<Self, OS>where
Self: Sized,
OS: Sample,
fn zip<OS>(self, other: OS) -> Zip<Self, OS>where Self: Sized, OS: Sample,
“Zip” two samplers together. Functionally equivalent to
(self, other)
.source§fn chain_resample<F, RS>(
self,
transform: F,
subsamples: usize
) -> ChainResample<Self, F>where
Self: Sized,
F: Fn(Self::Output) -> RS,
RS: Sample,
fn chain_resample<F, RS>( self, transform: F, subsamples: usize ) -> ChainResample<Self, F>where Self: Sized, F: Fn(Self::Output) -> RS, RS: Sample,
“Resampling” method for chaining samplers. Read more
Auto Trait Implementations§
impl<PT> RefUnwindSafe for ProtoPrimitiveArray<PT>where PT: RefUnwindSafe,
impl<PT> Send for ProtoPrimitiveArray<PT>where PT: Send,
impl<PT> Sync for ProtoPrimitiveArray<PT>where PT: Sync,
impl<PT> Unpin for ProtoPrimitiveArray<PT>where PT: Unpin,
impl<PT> UnwindSafe for ProtoPrimitiveArray<PT>where PT: 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