Struct aws_sdk_datazone::types::FormEntryOutput
source · #[non_exhaustive]pub struct FormEntryOutput {
pub type_name: String,
pub type_revision: String,
pub required: Option<bool>,
}
Expand description
The details of the form entry.
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.type_name: String
The name of the type of the form entry.
type_revision: String
The type revision of the form entry.
required: Option<bool>
Specifies whether a form entry is required.
Implementations§
source§impl FormEntryOutput
impl FormEntryOutput
sourcepub fn builder() -> FormEntryOutputBuilder
pub fn builder() -> FormEntryOutputBuilder
Creates a new builder-style object to manufacture FormEntryOutput
.
Trait Implementations§
source§impl Clone for FormEntryOutput
impl Clone for FormEntryOutput
source§fn clone(&self) -> FormEntryOutput
fn clone(&self) -> FormEntryOutput
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 FormEntryOutput
impl Debug for FormEntryOutput
source§impl PartialEq for FormEntryOutput
impl PartialEq for FormEntryOutput
source§fn eq(&self, other: &FormEntryOutput) -> bool
fn eq(&self, other: &FormEntryOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FormEntryOutput
Auto Trait Implementations§
impl Freeze for FormEntryOutput
impl RefUnwindSafe for FormEntryOutput
impl Send for FormEntryOutput
impl Sync for FormEntryOutput
impl Unpin for FormEntryOutput
impl UnwindSafe for FormEntryOutput
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.