pub enum IlluminaError {
ParseError,
SplitError,
}
Expand description
Errors encountered when parsing FASTQ files
Variants§
ParseError
We expected an integer but did not find one
SplitError
The line was not structured as expected
Trait Implementations§
Source§impl Debug for IlluminaError
impl Debug for IlluminaError
Source§impl From<ParseIntError> for IlluminaError
impl From<ParseIntError> for IlluminaError
Source§fn from(_: ParseIntError) -> IlluminaError
fn from(_: ParseIntError) -> IlluminaError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IlluminaError
impl RefUnwindSafe for IlluminaError
impl Send for IlluminaError
impl Sync for IlluminaError
impl Unpin for IlluminaError
impl UnwindSafe for IlluminaError
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