#[non_exhaustive]pub struct UpdateExportInput {
pub export_id: Option<String>,
pub file_password: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.export_id: Option<String>
The unique identifier Amazon Lex assigned to the export.
file_password: Option<String>
The new password to use to encrypt the export zip archive.
Implementations§
source§impl UpdateExportInput
impl UpdateExportInput
sourcepub fn builder() -> UpdateExportInputBuilder
pub fn builder() -> UpdateExportInputBuilder
Creates a new builder-style object to manufacture UpdateExportInput
.
Trait Implementations§
source§impl Clone for UpdateExportInput
impl Clone for UpdateExportInput
source§fn clone(&self) -> UpdateExportInput
fn clone(&self) -> UpdateExportInput
Returns a copy 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 UpdateExportInput
impl Debug for UpdateExportInput
source§impl PartialEq for UpdateExportInput
impl PartialEq for UpdateExportInput
source§fn eq(&self, other: &UpdateExportInput) -> bool
fn eq(&self, other: &UpdateExportInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateExportInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateExportInput
impl Send for UpdateExportInput
impl Sync for UpdateExportInput
impl Unpin for UpdateExportInput
impl UnwindSafe for UpdateExportInput
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> 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>
Creates a shared type from an unshared type.