pub struct ExportView {Show 15 fields
pub export_arn: String,
pub client_token: String,
pub export_status: String,
pub domain_name: String,
pub requested_at: DateTime<Utc>,
pub s3_bucket: String,
pub s3_key_prefix: Option<String>,
pub s3_sse_algorithm: Option<String>,
pub s3_sse_kms_key_id: Option<String>,
pub s3_bucket_owner: Option<String>,
pub failure_code: Option<String>,
pub failure_message: Option<String>,
pub export_manifest: Option<String>,
pub items_count: Option<i64>,
pub export_data_cutoff_time: Option<DateTime<Utc>>,
}Fields§
§export_arn: String§client_token: String§export_status: String§domain_name: String§requested_at: DateTime<Utc>§s3_bucket: String§s3_key_prefix: Option<String>§s3_sse_algorithm: Option<String>§s3_sse_kms_key_id: Option<String>§s3_bucket_owner: Option<String>§failure_code: Option<String>§failure_message: Option<String>§export_manifest: Option<String>§items_count: Option<i64>§export_data_cutoff_time: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for ExportView
impl Clone for ExportView
Source§fn clone(&self) -> ExportView
fn clone(&self) -> ExportView
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 ExportView
impl Debug for ExportView
Source§impl<'de> Deserialize<'de> for ExportView
impl<'de> Deserialize<'de> for ExportView
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 From<&Export> for ExportView
impl From<&Export> for ExportView
Source§impl From<ExportView> for Export
impl From<ExportView> for Export
Source§fn from(v: ExportView) -> Self
fn from(v: ExportView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExportView
impl RefUnwindSafe for ExportView
impl Send for ExportView
impl Sync for ExportView
impl Unpin for ExportView
impl UnsafeUnpin for ExportView
impl UnwindSafe for ExportView
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.