pub enum TransformError {
EmptyInput,
NonFiniteValue,
NonPositiveValue,
BelowLowerBound,
ZeroScale,
LengthMismatch {
expected: usize,
actual: usize,
},
}Expand description
Ошибки построения и применения target transforms.
Variants§
EmptyInput
Target vector пуст.
NonFiniteValue
Target содержит NaN или infinity.
NonPositiveValue
Transform требует строго положительный target.
BelowLowerBound
Transform получил значение ниже обученной нижней границы.
ZeroScale
Standardize transform получил нулевую дисперсию.
LengthMismatch
Output buffer length does not match the input length.
Trait Implementations§
Source§impl Clone for TransformError
impl Clone for TransformError
Source§fn clone(&self) -> TransformError
fn clone(&self) -> TransformError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TransformError
impl Debug for TransformError
Source§impl Display for TransformError
impl Display for TransformError
impl Eq for TransformError
Source§impl Error for TransformError
impl Error for TransformError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for TransformError
impl PartialEq for TransformError
Source§fn eq(&self, other: &TransformError) -> bool
fn eq(&self, other: &TransformError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TransformError
Auto Trait Implementations§
impl Freeze for TransformError
impl RefUnwindSafe for TransformError
impl Send for TransformError
impl Sync for TransformError
impl Unpin for TransformError
impl UnsafeUnpin for TransformError
impl UnwindSafe for TransformError
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