pub struct RunAggregateEntry {
pub export_name: String,
pub status: String,
pub run_id: String,
pub rows: i64,
pub files: i64,
pub bytes: u64,
pub duration_ms: i64,
pub mode: String,
pub error_message: Option<String>,
}Expand description
Per-export row inside an aggregate.
Fields§
§export_name: String§status: String§run_id: String§rows: i64§files: i64§bytes: u64§duration_ms: i64§mode: String§error_message: Option<String>Trait Implementations§
Source§impl Clone for RunAggregateEntry
impl Clone for RunAggregateEntry
Source§fn clone(&self) -> RunAggregateEntry
fn clone(&self) -> RunAggregateEntry
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 RunAggregateEntry
impl Debug for RunAggregateEntry
Source§impl<'de> Deserialize<'de> for RunAggregateEntry
impl<'de> Deserialize<'de> for RunAggregateEntry
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 RunAggregateEntry
impl RefUnwindSafe for RunAggregateEntry
impl Send for RunAggregateEntry
impl Sync for RunAggregateEntry
impl Unpin for RunAggregateEntry
impl UnsafeUnpin for RunAggregateEntry
impl UnwindSafe for RunAggregateEntry
Blanket Implementations§
impl<T> Allocation for T
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