pub struct FileRecord {
pub run_id: String,
pub export_name: String,
pub file_name: String,
pub row_count: i64,
pub bytes: i64,
pub format: String,
pub compression: Option<String>,
pub created_at: String,
}Fields§
§run_id: String§export_name: String§file_name: String§row_count: i64§bytes: i64§format: String§compression: Option<String>§created_at: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for FileRecord
impl RefUnwindSafe for FileRecord
impl Send for FileRecord
impl Sync for FileRecord
impl Unpin for FileRecord
impl UnsafeUnpin for FileRecord
impl UnwindSafe for FileRecord
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