pub struct ExportTrailer {
pub rows_emitted: i64,
pub truncated: bool,
pub reason: Option<String>,
}Expand description
The terminal record of the JSONL export: how many rows were emitted and whether the result was truncated.
Fields§
§rows_emitted: i64Number of rows emitted before the trailer.
truncated: boolWhether the export was truncated server-side.
reason: Option<String>Reason for truncation, if any.
Trait Implementations§
Source§impl Clone for ExportTrailer
impl Clone for ExportTrailer
Source§fn clone(&self) -> ExportTrailer
fn clone(&self) -> ExportTrailer
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 ExportTrailer
impl Debug for ExportTrailer
Source§impl<'de> Deserialize<'de> for ExportTrailer
impl<'de> Deserialize<'de> for ExportTrailer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExportTrailer
impl RefUnwindSafe for ExportTrailer
impl Send for ExportTrailer
impl Sync for ExportTrailer
impl Unpin for ExportTrailer
impl UnsafeUnpin for ExportTrailer
impl UnwindSafe for ExportTrailer
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