pub enum DatasetError {
EmptyActive,
MixedActiveCohorts,
DuplicateActiveSampleId,
DuplicateRepeatabilitySampleId,
ConflictingSharedSampleId,
DuplicateActiveObservation,
InconsistentClipGroup,
InvalidRecordingQuality,
NoUsableSpeech,
InvalidKnownFolds,
ImpossibleFold,
}Expand description
Validation and fold-construction failures.
Variants§
EmptyActive
MixedActiveCohorts
DuplicateActiveSampleId
DuplicateRepeatabilitySampleId
DuplicateActiveObservation
InconsistentClipGroup
InvalidRecordingQuality
NoUsableSpeech
InvalidKnownFolds
ImpossibleFold
Trait Implementations§
Source§impl Clone for DatasetError
impl Clone for DatasetError
Source§fn clone(&self) -> DatasetError
fn clone(&self) -> DatasetError
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 moreimpl Copy for DatasetError
Source§impl Debug for DatasetError
impl Debug for DatasetError
Source§impl Display for DatasetError
impl Display for DatasetError
impl Eq 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 PartialEq for DatasetError
impl PartialEq for DatasetError
impl StructuralPartialEq for DatasetError
Auto Trait Implementations§
impl Freeze for DatasetError
impl RefUnwindSafe for DatasetError
impl Send for DatasetError
impl Sync for DatasetError
impl Unpin for DatasetError
impl UnsafeUnpin 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