pub enum EntriesError {
NoSequence,
NoMD,
IncorrectMD,
}Expand description
An error that can arise from alignment_entries.
Variants:
- NoSequence - the record has no sequence,
- NoMD - the record has no MD tag,
- IncorrectMD - the record has an MD tag, but it has an unexpected type.
Variants§
Trait Implementations§
Source§impl Clone for EntriesError
impl Clone for EntriesError
Source§fn clone(&self) -> EntriesError
fn clone(&self) -> EntriesError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EntriesError
impl Debug for EntriesError
Source§impl PartialEq for EntriesError
impl PartialEq for EntriesError
impl Copy for EntriesError
impl Eq for EntriesError
impl StructuralPartialEq for EntriesError
Auto Trait Implementations§
impl Freeze for EntriesError
impl RefUnwindSafe for EntriesError
impl Send for EntriesError
impl Sync for EntriesError
impl Unpin for EntriesError
impl UnwindSafe for EntriesError
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