pub enum FeatureSelectError {
TooFewFeatures(usize, usize),
MrmrError(MrmrError),
TensorError(CausalTensorError),
}Variants§
Trait Implementations§
Source§impl Clone for FeatureSelectError
impl Clone for FeatureSelectError
Source§fn clone(&self) -> FeatureSelectError
fn clone(&self) -> FeatureSelectError
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 FeatureSelectError
impl Debug for FeatureSelectError
Source§impl Display for FeatureSelectError
impl Display for FeatureSelectError
Source§impl Error for FeatureSelectError
impl Error for FeatureSelectError
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 From<CausalTensorError> for FeatureSelectError
impl From<CausalTensorError> for FeatureSelectError
Source§fn from(err: CausalTensorError) -> FeatureSelectError
fn from(err: CausalTensorError) -> FeatureSelectError
Converts to this type from the input type.
Source§impl From<FeatureSelectError> for CdlError
impl From<FeatureSelectError> for CdlError
Source§fn from(err: FeatureSelectError) -> CdlError
fn from(err: FeatureSelectError) -> CdlError
Converts to this type from the input type.
Source§impl From<MrmrError> for FeatureSelectError
impl From<MrmrError> for FeatureSelectError
Source§fn from(err: MrmrError) -> FeatureSelectError
fn from(err: MrmrError) -> FeatureSelectError
Converts to this type from the input type.
Source§impl PartialEq for FeatureSelectError
impl PartialEq for FeatureSelectError
Source§fn eq(&self, other: &FeatureSelectError) -> bool
fn eq(&self, other: &FeatureSelectError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FeatureSelectError
impl PartialOrd for FeatureSelectError
impl StructuralPartialEq for FeatureSelectError
Auto Trait Implementations§
impl Freeze for FeatureSelectError
impl RefUnwindSafe for FeatureSelectError
impl Send for FeatureSelectError
impl Sync for FeatureSelectError
impl Unpin for FeatureSelectError
impl UnsafeUnpin for FeatureSelectError
impl UnwindSafe for FeatureSelectError
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