pub enum ReadTracingError {
InvalidEventType,
InvalidTypedefID,
InvalidValueTypeID,
VarIntOverflow,
FloatConversionError,
StringConversionError(Utf8Error),
InsufficientData,
}Variants§
InvalidEventType
InvalidTypedefID
InvalidValueTypeID
VarIntOverflow
FloatConversionError
StringConversionError(Utf8Error)
InsufficientData
Trait Implementations§
Source§impl Clone for ReadTracingError
impl Clone for ReadTracingError
Source§fn clone(&self) -> ReadTracingError
fn clone(&self) -> ReadTracingError
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 ReadTracingError
impl Debug for ReadTracingError
Source§impl From<Utf8Error> for ReadTracingError
impl From<Utf8Error> for ReadTracingError
Source§impl PartialEq for ReadTracingError
impl PartialEq for ReadTracingError
impl Copy for ReadTracingError
impl Eq for ReadTracingError
impl StructuralPartialEq for ReadTracingError
Auto Trait Implementations§
impl Freeze for ReadTracingError
impl RefUnwindSafe for ReadTracingError
impl Send for ReadTracingError
impl Sync for ReadTracingError
impl Unpin for ReadTracingError
impl UnwindSafe for ReadTracingError
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