pub enum DatasetError {
NoData,
InvalidData(String),
}Variants§
Trait Implementations§
Source§impl Debug for DatasetError
impl Debug for DatasetError
Source§impl Display for DatasetError
impl Display for DatasetError
Source§impl Error for DatasetError
impl Error for DatasetError
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 From<ParseFloatError> for DatasetError
impl From<ParseFloatError> for DatasetError
Source§fn from(err: ParseFloatError) -> DatasetError
fn from(err: ParseFloatError) -> DatasetError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DatasetError
impl RefUnwindSafe for DatasetError
impl Send for DatasetError
impl Sync for DatasetError
impl Unpin for DatasetError
impl UnwindSafe for DatasetError
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