pub struct ExportSummary {
pub export_arn: Option<String>,
pub export_status: Option<String>,
}
Expand description
Summary information about an export task.
Fields§
§export_arn: Option<String>
The Amazon Resource Name (ARN) of the export.
export_status: Option<String>
Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.
Trait Implementations§
Source§impl Clone for ExportSummary
impl Clone for ExportSummary
Source§fn clone(&self) -> ExportSummary
fn clone(&self) -> ExportSummary
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 moreSource§impl Debug for ExportSummary
impl Debug for ExportSummary
Source§impl Default for ExportSummary
impl Default for ExportSummary
Source§fn default() -> ExportSummary
fn default() -> ExportSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportSummary
impl<'de> Deserialize<'de> for ExportSummary
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
Source§impl PartialEq for ExportSummary
impl PartialEq for ExportSummary
impl StructuralPartialEq for ExportSummary
Auto Trait Implementations§
impl Freeze for ExportSummary
impl RefUnwindSafe for ExportSummary
impl Send for ExportSummary
impl Sync for ExportSummary
impl Unpin for ExportSummary
impl UnwindSafe for ExportSummary
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