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