Struct aws_sdk_connect::types::EvaluationNote
source · #[non_exhaustive]pub struct EvaluationNote {
pub value: Option<String>,
}
Expand description
Information about notes for a contact evaluation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.value: 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.
Implementations§
source§impl EvaluationNote
impl EvaluationNote
sourcepub fn value(&self) -> Option<&str>
pub fn value(&self) -> Option<&str>
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.
source§impl EvaluationNote
impl EvaluationNote
sourcepub fn builder() -> EvaluationNoteBuilder
pub fn builder() -> EvaluationNoteBuilder
Creates a new builder-style object to manufacture EvaluationNote
.
Trait Implementations§
source§impl Clone for EvaluationNote
impl Clone for EvaluationNote
source§fn clone(&self) -> EvaluationNote
fn clone(&self) -> EvaluationNote
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EvaluationNote
impl Debug for EvaluationNote
source§impl PartialEq for EvaluationNote
impl PartialEq for EvaluationNote
source§fn eq(&self, other: &EvaluationNote) -> bool
fn eq(&self, other: &EvaluationNote) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EvaluationNote
Auto Trait Implementations§
impl Freeze for EvaluationNote
impl RefUnwindSafe for EvaluationNote
impl Send for EvaluationNote
impl Sync for EvaluationNote
impl Unpin for EvaluationNote
impl UnwindSafe for EvaluationNote
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