Struct redfish_codegen::models::redfish::RedfishError
source · pub struct RedfishError {
pub message_extended_info: Option<Vec<Message>>,
pub code: String,
pub message: String,
}
Expand description
The properties that describe an error from a Redfish service.
Fields§
§message_extended_info: Option<Vec<Message>>
An array of messages describing one or more error messages.
code: String
A string indicating a specific MessageId from a message registry.
message: String
A human-readable error message corresponding to the message in a message registry.
Trait Implementations§
source§impl Clone for RedfishError
impl Clone for RedfishError
source§fn clone(&self) -> RedfishError
fn clone(&self) -> RedfishError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RedfishError
impl Debug for RedfishError
source§impl Default for RedfishError
impl Default for RedfishError
source§fn default() -> RedfishError
fn default() -> RedfishError
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RedfishError
impl<'de> Deserialize<'de> for RedfishError
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