Struct aws_sdk_lexmodelsv2::types::BuiltInSlotTypeSummary
source · #[non_exhaustive]pub struct BuiltInSlotTypeSummary {
pub slot_type_signature: Option<String>,
pub description: Option<String>,
}Expand description
Provides summary information about a built-in slot type for the ListBuiltInSlotTypes operation.
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.slot_type_signature: Option<String>The signature of the built-in slot type. Use this to specify the parent slot type of a derived slot type.
description: Option<String>The description of the built-in slot type.
Implementations§
source§impl BuiltInSlotTypeSummary
impl BuiltInSlotTypeSummary
sourcepub fn slot_type_signature(&self) -> Option<&str>
pub fn slot_type_signature(&self) -> Option<&str>
The signature of the built-in slot type. Use this to specify the parent slot type of a derived slot type.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the built-in slot type.
source§impl BuiltInSlotTypeSummary
impl BuiltInSlotTypeSummary
sourcepub fn builder() -> BuiltInSlotTypeSummaryBuilder
pub fn builder() -> BuiltInSlotTypeSummaryBuilder
Creates a new builder-style object to manufacture BuiltInSlotTypeSummary.
Trait Implementations§
source§impl Clone for BuiltInSlotTypeSummary
impl Clone for BuiltInSlotTypeSummary
source§fn clone(&self) -> BuiltInSlotTypeSummary
fn clone(&self) -> BuiltInSlotTypeSummary
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 BuiltInSlotTypeSummary
impl Debug for BuiltInSlotTypeSummary
source§impl PartialEq for BuiltInSlotTypeSummary
impl PartialEq for BuiltInSlotTypeSummary
source§fn eq(&self, other: &BuiltInSlotTypeSummary) -> bool
fn eq(&self, other: &BuiltInSlotTypeSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BuiltInSlotTypeSummary
Auto Trait Implementations§
impl Freeze for BuiltInSlotTypeSummary
impl RefUnwindSafe for BuiltInSlotTypeSummary
impl Send for BuiltInSlotTypeSummary
impl Sync for BuiltInSlotTypeSummary
impl Unpin for BuiltInSlotTypeSummary
impl UnwindSafe for BuiltInSlotTypeSummary
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.