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