pub struct DecodedBinarySnapshotRows {
pub table: String,
pub columns: Vec<BinarySnapshotColumn>,
pub rows: Vec<Vec<BinarySnapshotCell>>,
}Fields§
§table: String§columns: Vec<BinarySnapshotColumn>§rows: Vec<Vec<BinarySnapshotCell>>Implementations§
Trait Implementations§
Source§impl Clone for DecodedBinarySnapshotRows
impl Clone for DecodedBinarySnapshotRows
Source§fn clone(&self) -> DecodedBinarySnapshotRows
fn clone(&self) -> DecodedBinarySnapshotRows
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 DecodedBinarySnapshotRows
impl Debug for DecodedBinarySnapshotRows
Source§impl PartialEq for DecodedBinarySnapshotRows
impl PartialEq for DecodedBinarySnapshotRows
Source§fn eq(&self, other: &DecodedBinarySnapshotRows) -> bool
fn eq(&self, other: &DecodedBinarySnapshotRows) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DecodedBinarySnapshotRows
Auto Trait Implementations§
impl Freeze for DecodedBinarySnapshotRows
impl RefUnwindSafe for DecodedBinarySnapshotRows
impl Send for DecodedBinarySnapshotRows
impl Sync for DecodedBinarySnapshotRows
impl Unpin for DecodedBinarySnapshotRows
impl UnsafeUnpin for DecodedBinarySnapshotRows
impl UnwindSafe for DecodedBinarySnapshotRows
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