pub struct SystemApiErrorMessage {
pub base: MessageBase,
pub message_type: String,
pub subtype: Option<String>,
pub level: Option<SystemMessageLevel>,
pub message: Option<String>,
pub error: Option<String>,
}Expand description
System API error message.
Fields§
§base: MessageBase§message_type: String§subtype: Option<String>§level: Option<SystemMessageLevel>§message: Option<String>§error: Option<String>Trait Implementations§
Source§impl Clone for SystemApiErrorMessage
impl Clone for SystemApiErrorMessage
Source§fn clone(&self) -> SystemApiErrorMessage
fn clone(&self) -> SystemApiErrorMessage
Returns a duplicate 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 SystemApiErrorMessage
impl Debug for SystemApiErrorMessage
Source§impl<'de> Deserialize<'de> for SystemApiErrorMessage
impl<'de> Deserialize<'de> for SystemApiErrorMessage
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
Auto Trait Implementations§
impl Freeze for SystemApiErrorMessage
impl RefUnwindSafe for SystemApiErrorMessage
impl Send for SystemApiErrorMessage
impl Sync for SystemApiErrorMessage
impl Unpin for SystemApiErrorMessage
impl UnsafeUnpin for SystemApiErrorMessage
impl UnwindSafe for SystemApiErrorMessage
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
Mutably borrows from an owned value. Read more