pub struct InputChunkJson {
pub seq: u64,
pub rows_json: Vec<Vec<u8>>,
pub terminal: bool,
}Fields§
§seq: u64§rows_json: Vec<Vec<u8>>§terminal: boolTrait Implementations§
Source§impl Clone for InputChunkJson
impl Clone for InputChunkJson
Source§fn clone(&self) -> InputChunkJson
fn clone(&self) -> InputChunkJson
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 InputChunkJson
impl Debug for InputChunkJson
impl Eq for InputChunkJson
Source§impl PartialEq for InputChunkJson
impl PartialEq for InputChunkJson
Source§fn eq(&self, other: &InputChunkJson) -> bool
fn eq(&self, other: &InputChunkJson) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InputChunkJson
Auto Trait Implementations§
impl Freeze for InputChunkJson
impl RefUnwindSafe for InputChunkJson
impl Send for InputChunkJson
impl Sync for InputChunkJson
impl Unpin for InputChunkJson
impl UnsafeUnpin for InputChunkJson
impl UnwindSafe for InputChunkJson
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