pub enum IsolationTrustField {
Locality,
Tenancy,
Auditability,
Cleanup,
DataResidency,
SecretIsolation,
}Expand description
Enumerates the finite isolation trust field cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
Locality
Use this variant when the contract needs to represent locality; selecting it has no side effect by itself.
Tenancy
Use this variant when the contract needs to represent tenancy; selecting it has no side effect by itself.
Auditability
Use this variant when the contract needs to represent auditability; selecting it has no side effect by itself.
Cleanup
Use this variant when the contract needs to represent cleanup; selecting it has no side effect by itself.
DataResidency
Use this variant when the contract needs to represent data residency; selecting it has no side effect by itself.
SecretIsolation
Use this variant when the contract needs to represent secret isolation; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for IsolationTrustField
impl Clone for IsolationTrustField
Source§fn clone(&self) -> IsolationTrustField
fn clone(&self) -> IsolationTrustField
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for IsolationTrustField
impl Debug for IsolationTrustField
Source§impl<'de> Deserialize<'de> for IsolationTrustField
impl<'de> Deserialize<'de> for IsolationTrustField
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>,
Source§impl Hash for IsolationTrustField
impl Hash for IsolationTrustField
Source§impl Ord for IsolationTrustField
impl Ord for IsolationTrustField
Source§fn cmp(&self, other: &IsolationTrustField) -> Ordering
fn cmp(&self, other: &IsolationTrustField) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for IsolationTrustField
impl PartialEq for IsolationTrustField
Source§fn eq(&self, other: &IsolationTrustField) -> bool
fn eq(&self, other: &IsolationTrustField) -> bool
self and other values to be equal, and is used by ==.