pub enum IsolationMatchStatus {
Matched,
DowngradeApproved,
DowngradeDenied,
UnsupportedHost,
}Expand description
Enumerates the finite isolation match status cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
Matched
Use this variant when the contract needs to represent matched; selecting it has no side effect by itself.
DowngradeApproved
Use this variant when the contract needs to represent downgrade approved; selecting it has no side effect by itself.
DowngradeDenied
Use this variant when the contract needs to represent downgrade denied; selecting it has no side effect by itself.
UnsupportedHost
Use this variant when the contract needs to represent unsupported host; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for IsolationMatchStatus
impl Clone for IsolationMatchStatus
Source§fn clone(&self) -> IsolationMatchStatus
fn clone(&self) -> IsolationMatchStatus
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 IsolationMatchStatus
impl Debug for IsolationMatchStatus
Source§impl<'de> Deserialize<'de> for IsolationMatchStatus
impl<'de> Deserialize<'de> for IsolationMatchStatus
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 IsolationMatchStatus
impl PartialEq for IsolationMatchStatus
Source§fn eq(&self, other: &IsolationMatchStatus) -> bool
fn eq(&self, other: &IsolationMatchStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IsolationMatchStatus
impl Serialize for IsolationMatchStatus
impl Copy for IsolationMatchStatus
impl Eq for IsolationMatchStatus
impl StructuralPartialEq for IsolationMatchStatus
Auto Trait Implementations§
impl Freeze for IsolationMatchStatus
impl RefUnwindSafe for IsolationMatchStatus
impl Send for IsolationMatchStatus
impl Sync for IsolationMatchStatus
impl Unpin for IsolationMatchStatus
impl UnsafeUnpin for IsolationMatchStatus
impl UnwindSafe for IsolationMatchStatus
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