pub enum SystemProxyStatus {
Available,
MissingPrivilege,
UnsupportedPlatform,
ToolMissing,
DisabledAtCompileTime,
}Expand description
Status of a system proxy capability check.
Variants§
Available
The capability is available on this system.
MissingPrivilege
The capability exists but requires elevated privileges.
UnsupportedPlatform
The capability is not supported on this platform.
ToolMissing
The required tool is not installed.
DisabledAtCompileTime
The capability was disabled at compile time.
Trait Implementations§
Source§impl Clone for SystemProxyStatus
impl Clone for SystemProxyStatus
Source§fn clone(&self) -> SystemProxyStatus
fn clone(&self) -> SystemProxyStatus
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 SystemProxyStatus
impl Debug for SystemProxyStatus
Source§impl<'de> Deserialize<'de> for SystemProxyStatus
impl<'de> Deserialize<'de> for SystemProxyStatus
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 Display for SystemProxyStatus
impl Display for SystemProxyStatus
impl Eq for SystemProxyStatus
Source§impl PartialEq for SystemProxyStatus
impl PartialEq for SystemProxyStatus
Source§impl Serialize for SystemProxyStatus
impl Serialize for SystemProxyStatus
impl StructuralPartialEq for SystemProxyStatus
Auto Trait Implementations§
impl Freeze for SystemProxyStatus
impl RefUnwindSafe for SystemProxyStatus
impl Send for SystemProxyStatus
impl Sync for SystemProxyStatus
impl Unpin for SystemProxyStatus
impl UnsafeUnpin for SystemProxyStatus
impl UnwindSafe for SystemProxyStatus
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