pub enum SecretIsolationRequirement {
None,
BestEffort,
Required,
}Expand description
Enumerates the finite secret isolation requirement cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
None
Use this variant when the contract needs to represent none; selecting it has no side effect by itself.
BestEffort
Use this variant when the contract needs to represent best effort; selecting it has no side effect by itself.
Required
Use this variant when the contract needs to represent required; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for SecretIsolationRequirement
impl Clone for SecretIsolationRequirement
Source§fn clone(&self) -> SecretIsolationRequirement
fn clone(&self) -> SecretIsolationRequirement
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 SecretIsolationRequirement
impl Debug for SecretIsolationRequirement
Source§impl<'de> Deserialize<'de> for SecretIsolationRequirement
impl<'de> Deserialize<'de> for SecretIsolationRequirement
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 SecretIsolationRequirement
impl PartialEq for SecretIsolationRequirement
Source§fn eq(&self, other: &SecretIsolationRequirement) -> bool
fn eq(&self, other: &SecretIsolationRequirement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SecretIsolationRequirement
impl StructuralPartialEq for SecretIsolationRequirement
Auto Trait Implementations§
impl Freeze for SecretIsolationRequirement
impl RefUnwindSafe for SecretIsolationRequirement
impl Send for SecretIsolationRequirement
impl Sync for SecretIsolationRequirement
impl Unpin for SecretIsolationRequirement
impl UnsafeUnpin for SecretIsolationRequirement
impl UnwindSafe for SecretIsolationRequirement
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