pub struct SystemConfigurationLastError {
pub domain: String,
pub code: i64,
pub description: String,
pub failure_reason: Option<String>,
pub recovery_suggestion: Option<String>,
}Fields§
§domain: String§code: i64§description: String§failure_reason: Option<String>§recovery_suggestion: Option<String>Trait Implementations§
Source§impl Clone for SystemConfigurationLastError
impl Clone for SystemConfigurationLastError
Source§fn clone(&self) -> SystemConfigurationLastError
fn clone(&self) -> SystemConfigurationLastError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SystemConfigurationLastError
impl Debug for SystemConfigurationLastError
Source§impl<'de> Deserialize<'de> for SystemConfigurationLastError
impl<'de> Deserialize<'de> for SystemConfigurationLastError
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
Source§impl PartialEq for SystemConfigurationLastError
impl PartialEq for SystemConfigurationLastError
Source§fn eq(&self, other: &SystemConfigurationLastError) -> bool
fn eq(&self, other: &SystemConfigurationLastError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SystemConfigurationLastError
impl StructuralPartialEq for SystemConfigurationLastError
Auto Trait Implementations§
impl Freeze for SystemConfigurationLastError
impl RefUnwindSafe for SystemConfigurationLastError
impl Send for SystemConfigurationLastError
impl Sync for SystemConfigurationLastError
impl Unpin for SystemConfigurationLastError
impl UnsafeUnpin for SystemConfigurationLastError
impl UnwindSafe for SystemConfigurationLastError
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