pub struct RecordStream {
pub version: i32,
pub records: Vec<Record>,
pub warnings: Vec<Warning>,
}Expand description
Fields§
§version: i32Container version from the header (always SUPPORTED_VERSION today).
records: Vec<Record>Records in stream (append) order.
warnings: Vec<Warning>Non-fatal anomalies encountered while decoding.
Trait Implementations§
Source§impl Clone for RecordStream
impl Clone for RecordStream
Source§fn clone(&self) -> RecordStream
fn clone(&self) -> RecordStream
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 RecordStream
impl Debug for RecordStream
impl Eq for RecordStream
Source§impl PartialEq for RecordStream
impl PartialEq for RecordStream
Source§fn eq(&self, other: &RecordStream) -> bool
fn eq(&self, other: &RecordStream) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecordStream
Auto Trait Implementations§
impl Freeze for RecordStream
impl RefUnwindSafe for RecordStream
impl Send for RecordStream
impl Sync for RecordStream
impl Unpin for RecordStream
impl UnsafeUnpin for RecordStream
impl UnwindSafe for RecordStream
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