pub enum TryFromBoolRowsError {
NumberOfColumnsMismatch {
row_index: usize,
current_number_of_columns: usize,
expected_number_of_columns: usize,
},
}
Expand description
Error when creating a CSVBinaryMatrix
from boolean rows.
Variants§
NumberOfColumnsMismatch
The number of columns in the current row is not equal to the number of columns in the first row.
Trait Implementations§
Source§impl Debug for TryFromBoolRowsError
impl Debug for TryFromBoolRowsError
Source§impl Display for TryFromBoolRowsError
impl Display for TryFromBoolRowsError
Source§impl Error for TryFromBoolRowsError
impl Error for TryFromBoolRowsError
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()
Auto Trait Implementations§
impl Freeze for TryFromBoolRowsError
impl RefUnwindSafe for TryFromBoolRowsError
impl Send for TryFromBoolRowsError
impl Sync for TryFromBoolRowsError
impl Unpin for TryFromBoolRowsError
impl UnwindSafe for TryFromBoolRowsError
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