pub struct SystemConfigurationError {
pub function: &'static str,
pub code: i32,
pub message: String,
}Fields§
§function: &'static str§code: i32§message: StringTrait Implementations§
Source§impl Clone for SystemConfigurationError
impl Clone for SystemConfigurationError
Source§fn clone(&self) -> SystemConfigurationError
fn clone(&self) -> SystemConfigurationError
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 SystemConfigurationError
impl Debug for SystemConfigurationError
Source§impl Display for SystemConfigurationError
impl Display for SystemConfigurationError
Source§impl Error for SystemConfigurationError
impl Error for SystemConfigurationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for SystemConfigurationError
impl PartialEq for SystemConfigurationError
Source§fn eq(&self, other: &SystemConfigurationError) -> bool
fn eq(&self, other: &SystemConfigurationError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SystemConfigurationError
impl StructuralPartialEq for SystemConfigurationError
Auto Trait Implementations§
impl Freeze for SystemConfigurationError
impl RefUnwindSafe for SystemConfigurationError
impl Send for SystemConfigurationError
impl Sync for SystemConfigurationError
impl Unpin for SystemConfigurationError
impl UnsafeUnpin for SystemConfigurationError
impl UnwindSafe for SystemConfigurationError
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