pub enum ChunkParseError {
NotJson,
NotObject,
RowsNotArray,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ChunkParseError
impl Clone for ChunkParseError
Source§fn clone(&self) -> ChunkParseError
fn clone(&self) -> ChunkParseError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ChunkParseError
impl Debug for ChunkParseError
impl Eq for ChunkParseError
Source§impl PartialEq for ChunkParseError
impl PartialEq for ChunkParseError
Source§fn eq(&self, other: &ChunkParseError) -> bool
fn eq(&self, other: &ChunkParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChunkParseError
Auto Trait Implementations§
impl Freeze for ChunkParseError
impl RefUnwindSafe for ChunkParseError
impl Send for ChunkParseError
impl Sync for ChunkParseError
impl Unpin for ChunkParseError
impl UnsafeUnpin for ChunkParseError
impl UnwindSafe for ChunkParseError
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