#[non_exhaustive]pub struct DetailedGlossaryTermBuilder { /* private fields */ }
Expand description
A builder for DetailedGlossaryTerm
.
Implementations§
source§impl DetailedGlossaryTermBuilder
impl DetailedGlossaryTermBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of a glossary term attached to the inventory asset.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of a glossary term attached to the inventory asset.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The name of a glossary term attached to the inventory asset.
sourcepub fn short_description(self, input: impl Into<String>) -> Self
pub fn short_description(self, input: impl Into<String>) -> Self
The shoft description of a glossary term attached to the inventory asset.
sourcepub fn set_short_description(self, input: Option<String>) -> Self
pub fn set_short_description(self, input: Option<String>) -> Self
The shoft description of a glossary term attached to the inventory asset.
sourcepub fn get_short_description(&self) -> &Option<String>
pub fn get_short_description(&self) -> &Option<String>
The shoft description of a glossary term attached to the inventory asset.
sourcepub fn build(self) -> DetailedGlossaryTerm
pub fn build(self) -> DetailedGlossaryTerm
Consumes the builder and constructs a DetailedGlossaryTerm
.
Trait Implementations§
source§impl Clone for DetailedGlossaryTermBuilder
impl Clone for DetailedGlossaryTermBuilder
source§fn clone(&self) -> DetailedGlossaryTermBuilder
fn clone(&self) -> DetailedGlossaryTermBuilder
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 DetailedGlossaryTermBuilder
impl Debug for DetailedGlossaryTermBuilder
source§impl Default for DetailedGlossaryTermBuilder
impl Default for DetailedGlossaryTermBuilder
source§fn default() -> DetailedGlossaryTermBuilder
fn default() -> DetailedGlossaryTermBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DetailedGlossaryTermBuilder
impl PartialEq for DetailedGlossaryTermBuilder
source§fn eq(&self, other: &DetailedGlossaryTermBuilder) -> bool
fn eq(&self, other: &DetailedGlossaryTermBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DetailedGlossaryTermBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DetailedGlossaryTermBuilder
impl Send for DetailedGlossaryTermBuilder
impl Sync for DetailedGlossaryTermBuilder
impl Unpin for DetailedGlossaryTermBuilder
impl UnwindSafe for DetailedGlossaryTermBuilder
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