pub struct AuxiliaryMessage {
pub auxiliary_message: String,
pub field_mask: String,
pub severity: Option<Severity>,
}
Expand description
Auxiliary message about issues with printers or settings. Example: {message_type:AUXILIARY_MESSAGE_WARNING, field_mask:make_and_model, message:“Given printer is invalid or no longer supported.”}
Fields§
§auxiliary_message: String
Auxiliary message about issues with printers or settings. Example: {message_type:AUXILIARY_MESSAGE_WARNING, field_mask:make_and_model, message:“Given printer is invalid or no longer supported.”}
field_mask: String
Auxiliary message about issues with printers or settings. Example: {message_type:AUXILIARY_MESSAGE_WARNING, field_mask:make_and_model, message:“Given printer is invalid or no longer supported.”}
severity: Option<Severity>
Auxiliary message about issues with printers or settings. Example: {message_type:AUXILIARY_MESSAGE_WARNING, field_mask:make_and_model, message:“Given printer is invalid or no longer supported.”}
Trait Implementations§
Source§impl Clone for AuxiliaryMessage
impl Clone for AuxiliaryMessage
Source§fn clone(&self) -> AuxiliaryMessage
fn clone(&self) -> AuxiliaryMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for AuxiliaryMessage
impl Debug for AuxiliaryMessage
Source§impl<'de> Deserialize<'de> for AuxiliaryMessage
impl<'de> Deserialize<'de> for AuxiliaryMessage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl JsonSchema for AuxiliaryMessage
impl JsonSchema for AuxiliaryMessage
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moreSource§impl PartialEq for AuxiliaryMessage
impl PartialEq for AuxiliaryMessage
Source§impl Serialize for AuxiliaryMessage
impl Serialize for AuxiliaryMessage
impl StructuralPartialEq for AuxiliaryMessage
Auto Trait Implementations§
impl Freeze for AuxiliaryMessage
impl RefUnwindSafe for AuxiliaryMessage
impl Send for AuxiliaryMessage
impl Sync for AuxiliaryMessage
impl Unpin for AuxiliaryMessage
impl UnwindSafe for AuxiliaryMessage
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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