pub enum QueryOperandDecodingError {
MissingBytes(usize),
Size(StdError),
FileOffset1(FileOffsetDecodingError),
FileOffset2(FileOffsetDecodingError),
UnknownComparisonType(u8),
}
Variants§
MissingBytes(usize)
Size(StdError)
FileOffset1(FileOffsetDecodingError)
FileOffset2(FileOffsetDecodingError)
UnknownComparisonType(u8)
Trait Implementations§
Source§impl Clone for QueryOperandDecodingError
impl Clone for QueryOperandDecodingError
Source§fn clone(&self) -> QueryOperandDecodingError
fn clone(&self) -> QueryOperandDecodingError
Returns a copy 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 QueryOperandDecodingError
impl Debug for QueryOperandDecodingError
impl Copy for QueryOperandDecodingError
impl StructuralPartialEq for QueryOperandDecodingError
Auto Trait Implementations§
impl Freeze for QueryOperandDecodingError
impl RefUnwindSafe for QueryOperandDecodingError
impl Send for QueryOperandDecodingError
impl Sync for QueryOperandDecodingError
impl Unpin for QueryOperandDecodingError
impl UnwindSafe for QueryOperandDecodingError
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