#[non_exhaustive]pub struct ValidationMessageBuilder { /* private fields */ }
Expand description
A builder for ValidationMessage
.
Implementations§
source§impl ValidationMessageBuilder
impl ValidationMessageBuilder
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
A message describing the error or warning.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
A message describing the error or warning.
sourcepub fn get_message(&self) -> &Option<String>
pub fn get_message(&self) -> &Option<String>
A message describing the error or warning.
sourcepub fn severity(self, input: ValidationSeverity) -> Self
pub fn severity(self, input: ValidationSeverity) -> Self
An indication of the severity of this message:
-
error
: This message indicates that this is not a valid setting for an option. -
warning
: This message is providing information you should take into account.
sourcepub fn set_severity(self, input: Option<ValidationSeverity>) -> Self
pub fn set_severity(self, input: Option<ValidationSeverity>) -> Self
An indication of the severity of this message:
-
error
: This message indicates that this is not a valid setting for an option. -
warning
: This message is providing information you should take into account.
sourcepub fn get_severity(&self) -> &Option<ValidationSeverity>
pub fn get_severity(&self) -> &Option<ValidationSeverity>
An indication of the severity of this message:
-
error
: This message indicates that this is not a valid setting for an option. -
warning
: This message is providing information you should take into account.
sourcepub fn namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The namespace to which the option belongs.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The namespace to which the option belongs.
sourcepub fn get_namespace(&self) -> &Option<String>
pub fn get_namespace(&self) -> &Option<String>
The namespace to which the option belongs.
sourcepub fn option_name(self, input: impl Into<String>) -> Self
pub fn option_name(self, input: impl Into<String>) -> Self
The name of the option.
sourcepub fn set_option_name(self, input: Option<String>) -> Self
pub fn set_option_name(self, input: Option<String>) -> Self
The name of the option.
sourcepub fn get_option_name(&self) -> &Option<String>
pub fn get_option_name(&self) -> &Option<String>
The name of the option.
sourcepub fn build(self) -> ValidationMessage
pub fn build(self) -> ValidationMessage
Consumes the builder and constructs a ValidationMessage
.
Trait Implementations§
source§impl Clone for ValidationMessageBuilder
impl Clone for ValidationMessageBuilder
source§fn clone(&self) -> ValidationMessageBuilder
fn clone(&self) -> ValidationMessageBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ValidationMessageBuilder
impl Debug for ValidationMessageBuilder
source§impl Default for ValidationMessageBuilder
impl Default for ValidationMessageBuilder
source§fn default() -> ValidationMessageBuilder
fn default() -> ValidationMessageBuilder
source§impl PartialEq for ValidationMessageBuilder
impl PartialEq for ValidationMessageBuilder
source§fn eq(&self, other: &ValidationMessageBuilder) -> bool
fn eq(&self, other: &ValidationMessageBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ValidationMessageBuilder
Auto Trait Implementations§
impl Freeze for ValidationMessageBuilder
impl RefUnwindSafe for ValidationMessageBuilder
impl Send for ValidationMessageBuilder
impl Sync for ValidationMessageBuilder
impl Unpin for ValidationMessageBuilder
impl UnwindSafe for ValidationMessageBuilder
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