Struct aws_sdk_connect::types::builders::EvaluationNoteBuilder
source · #[non_exhaustive]pub struct EvaluationNoteBuilder { /* private fields */ }
Expand description
A builder for EvaluationNote
.
Implementations§
source§impl EvaluationNoteBuilder
impl EvaluationNoteBuilder
sourcepub fn value(self, input: impl Into<String>) -> Self
pub fn value(self, input: impl Into<String>) -> Self
The note for an item (section or question) in a contact evaluation.
Even though a note in an evaluation can have up to 3072 chars, there is also a limit on the total number of chars for all the notes in the evaluation combined. Assuming there are N questions in the evaluation being submitted, then the max char limit for all notes combined is N x 1024.
sourcepub fn set_value(self, input: Option<String>) -> Self
pub fn set_value(self, input: Option<String>) -> Self
The note for an item (section or question) in a contact evaluation.
Even though a note in an evaluation can have up to 3072 chars, there is also a limit on the total number of chars for all the notes in the evaluation combined. Assuming there are N questions in the evaluation being submitted, then the max char limit for all notes combined is N x 1024.
sourcepub fn get_value(&self) -> &Option<String>
pub fn get_value(&self) -> &Option<String>
The note for an item (section or question) in a contact evaluation.
Even though a note in an evaluation can have up to 3072 chars, there is also a limit on the total number of chars for all the notes in the evaluation combined. Assuming there are N questions in the evaluation being submitted, then the max char limit for all notes combined is N x 1024.
sourcepub fn build(self) -> EvaluationNote
pub fn build(self) -> EvaluationNote
Consumes the builder and constructs a EvaluationNote
.
Trait Implementations§
source§impl Clone for EvaluationNoteBuilder
impl Clone for EvaluationNoteBuilder
source§fn clone(&self) -> EvaluationNoteBuilder
fn clone(&self) -> EvaluationNoteBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EvaluationNoteBuilder
impl Debug for EvaluationNoteBuilder
source§impl Default for EvaluationNoteBuilder
impl Default for EvaluationNoteBuilder
source§fn default() -> EvaluationNoteBuilder
fn default() -> EvaluationNoteBuilder
source§impl PartialEq for EvaluationNoteBuilder
impl PartialEq for EvaluationNoteBuilder
source§fn eq(&self, other: &EvaluationNoteBuilder) -> bool
fn eq(&self, other: &EvaluationNoteBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EvaluationNoteBuilder
Auto Trait Implementations§
impl Freeze for EvaluationNoteBuilder
impl RefUnwindSafe for EvaluationNoteBuilder
impl Send for EvaluationNoteBuilder
impl Sync for EvaluationNoteBuilder
impl Unpin for EvaluationNoteBuilder
impl UnwindSafe for EvaluationNoteBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more