pub struct NumericInput;Expand description
Phantom type representing a numerical array input
Trait Implementations§
Source§impl TypeCompatible<NumericInput> for TypedPipelineStage<NumericInput, DenseOutput>
Implementation for numeric input compatibility
impl TypeCompatible<NumericInput> for TypedPipelineStage<NumericInput, DenseOutput>
Implementation for numeric input compatibility
Source§fn is_compatible(&self) -> bool
fn is_compatible(&self) -> bool
Check if this stage is compatible with the given type
Source§impl TypeCompatible<NumericInput> for TypedPipelineStage<NumericInput, SparseOutput>
impl TypeCompatible<NumericInput> for TypedPipelineStage<NumericInput, SparseOutput>
Source§fn is_compatible(&self) -> bool
fn is_compatible(&self) -> bool
Check if this stage is compatible with the given type
Auto Trait Implementations§
impl Freeze for NumericInput
impl RefUnwindSafe for NumericInput
impl Send for NumericInput
impl Sync for NumericInput
impl Unpin for NumericInput
impl UnwindSafe for NumericInput
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more