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