pub struct ImportDescription {
pub import_arn: String,
pub import_status: String,
pub table_arn: String,
pub table_name: String,
pub s3_bucket_source: String,
pub input_format: String,
pub start_time: DateTime<Utc>,
pub end_time: DateTime<Utc>,
pub processed_item_count: i64,
pub processed_size_bytes: i64,
}Fields§
§import_arn: String§import_status: String§table_arn: String§table_name: String§s3_bucket_source: String§input_format: String§start_time: DateTime<Utc>§end_time: DateTime<Utc>§processed_item_count: i64§processed_size_bytes: i64Trait Implementations§
Source§impl Clone for ImportDescription
impl Clone for ImportDescription
Source§fn clone(&self) -> ImportDescription
fn clone(&self) -> ImportDescription
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 ImportDescription
impl RefUnwindSafe for ImportDescription
impl Send for ImportDescription
impl Sync for ImportDescription
impl Unpin for ImportDescription
impl UnsafeUnpin for ImportDescription
impl UnwindSafe for ImportDescription
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