pub enum ParseEntryError {
NotEnoughData,
UnknownRecordType(u8),
}Variants§
Trait Implementations§
Source§impl Clone for ParseEntryError
impl Clone for ParseEntryError
Source§fn clone(&self) -> ParseEntryError
fn clone(&self) -> ParseEntryError
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 ParseEntryError
impl Debug for ParseEntryError
Source§impl PartialEq for ParseEntryError
impl PartialEq for ParseEntryError
impl Copy for ParseEntryError
impl StructuralPartialEq for ParseEntryError
Auto Trait Implementations§
impl Freeze for ParseEntryError
impl RefUnwindSafe for ParseEntryError
impl Send for ParseEntryError
impl Sync for ParseEntryError
impl Unpin for ParseEntryError
impl UnwindSafe for ParseEntryError
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