pub struct ProxyApplyReport {
pub status: ProxyApplyStatus,
pub activation: ProxyActivation,
pub detail: Option<String>,
}Fields§
§status: ProxyApplyStatus§activation: ProxyActivation§detail: Option<String>Implementations§
Source§impl ProxyApplyReport
impl ProxyApplyReport
pub fn applied(activation: ProxyActivation) -> Self
pub fn cleared(activation: ProxyActivation) -> Self
pub fn unsupported(detail: impl Into<String>) -> Self
Trait Implementations§
Source§impl Clone for ProxyApplyReport
impl Clone for ProxyApplyReport
Source§fn clone(&self) -> ProxyApplyReport
fn clone(&self) -> ProxyApplyReport
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 ProxyApplyReport
impl Debug for ProxyApplyReport
Source§impl<'de> Deserialize<'de> for ProxyApplyReport
impl<'de> Deserialize<'de> for ProxyApplyReport
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
impl Eq for ProxyApplyReport
Source§impl PartialEq for ProxyApplyReport
impl PartialEq for ProxyApplyReport
Source§fn eq(&self, other: &ProxyApplyReport) -> bool
fn eq(&self, other: &ProxyApplyReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProxyApplyReport
impl Serialize for ProxyApplyReport
impl StructuralPartialEq for ProxyApplyReport
Auto Trait Implementations§
impl Freeze for ProxyApplyReport
impl RefUnwindSafe for ProxyApplyReport
impl Send for ProxyApplyReport
impl Sync for ProxyApplyReport
impl Unpin for ProxyApplyReport
impl UnsafeUnpin for ProxyApplyReport
impl UnwindSafe for ProxyApplyReport
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