pub enum PackError {
OutputTooSmall {
buffer: PackBuffer,
needed: usize,
provided: usize,
},
InvalidQuality {
offset: usize,
byte: u8,
},
UnsortedQualityThresholds {
index: usize,
},
TooManyQualityThresholds {
count: usize,
},
}Expand description
Error returned by base or quality packing helpers.
Variants§
OutputTooSmall
A caller-supplied output buffer was too small.
Fields
§
buffer: PackBufferBuffer that was too small.
InvalidQuality
A quality byte was outside the printable Phred+33 range.
UnsortedQualityThresholds
Quality thresholds were not sorted in ascending order.
TooManyQualityThresholds
More quality thresholds were provided than fit in a u8 bin.
Trait Implementations§
impl Copy for PackError
impl Eq for PackError
Source§impl Error for PackError
impl Error for PackError
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()
impl StructuralPartialEq for PackError
Auto Trait Implementations§
impl Freeze for PackError
impl RefUnwindSafe for PackError
impl Send for PackError
impl Sync for PackError
impl Unpin for PackError
impl UnsafeUnpin for PackError
impl UnwindSafe for PackError
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