Struct aws_sdk_datazone::types::DetailedGlossaryTerm
source · #[non_exhaustive]pub struct DetailedGlossaryTerm {
pub name: Option<String>,
pub short_description: Option<String>,
}
Expand description
Details of a glossary term attached to the inventory asset.
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.name: Option<String>
The name of a glossary term attached to the inventory asset.
short_description: Option<String>
The shoft description of a glossary term attached to the inventory asset.
Implementations§
source§impl DetailedGlossaryTerm
impl DetailedGlossaryTerm
sourcepub fn builder() -> DetailedGlossaryTermBuilder
pub fn builder() -> DetailedGlossaryTermBuilder
Creates a new builder-style object to manufacture DetailedGlossaryTerm
.
Trait Implementations§
source§impl Clone for DetailedGlossaryTerm
impl Clone for DetailedGlossaryTerm
source§fn clone(&self) -> DetailedGlossaryTerm
fn clone(&self) -> DetailedGlossaryTerm
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 DetailedGlossaryTerm
impl Debug for DetailedGlossaryTerm
source§impl PartialEq for DetailedGlossaryTerm
impl PartialEq for DetailedGlossaryTerm
source§fn eq(&self, other: &DetailedGlossaryTerm) -> bool
fn eq(&self, other: &DetailedGlossaryTerm) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DetailedGlossaryTerm
Auto Trait Implementations§
impl RefUnwindSafe for DetailedGlossaryTerm
impl Send for DetailedGlossaryTerm
impl Sync for DetailedGlossaryTerm
impl Unpin for DetailedGlossaryTerm
impl UnwindSafe for DetailedGlossaryTerm
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