pub struct ExportDescription {
pub export_arn: String,
pub export_status: String,
pub table_arn: String,
pub s3_bucket: String,
pub s3_prefix: Option<String>,
pub export_format: String,
pub start_time: DateTime<Utc>,
pub end_time: DateTime<Utc>,
pub export_time: DateTime<Utc>,
pub item_count: i64,
pub billed_size_bytes: i64,
}Fields§
§export_arn: String§export_status: String§table_arn: String§s3_bucket: String§s3_prefix: Option<String>§export_format: String§start_time: DateTime<Utc>§end_time: DateTime<Utc>§export_time: DateTime<Utc>§item_count: i64§billed_size_bytes: i64Trait Implementations§
Source§impl Clone for ExportDescription
impl Clone for ExportDescription
Source§fn clone(&self) -> ExportDescription
fn clone(&self) -> ExportDescription
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExportDescription
impl RefUnwindSafe for ExportDescription
impl Send for ExportDescription
impl Sync for ExportDescription
impl Unpin for ExportDescription
impl UnsafeUnpin for ExportDescription
impl UnwindSafe for ExportDescription
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