pub struct Message {
pub message: Option<String>,
pub message_args: Option<Vec<String>>,
pub message_id: String,
pub message_severity: Option<Health>,
pub oem: Option<Oem>,
pub related_properties: Option<Vec<String>>,
pub resolution: Option<String>,
pub severity: Option<String>,
}
Expand description
The message that the Redfish service returns.
Fields§
§message: Option<String>
The human-readable message.
message_args: Option<Vec<String>>
An array of message arguments that are substituted for the arguments in the message when looked up in the message registry.
message_id: String
The identifier for the message.
message_severity: Option<Health>
§oem: Option<Oem>
A set of properties described by the message.
resolution: Option<String>
Used to provide suggestions on how to resolve the situation that caused the message.
severity: Option<String>
The severity of the message.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
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>,
Deserialize this value from the given Serde deserializer. Read more