pub struct ManagementVtlFeatures(/* private fields */);
Expand description
Management VTL Feature Flags
Implementations§
Source§impl ManagementVtlFeatures
impl ManagementVtlFeatures
Sourcepub const fn strict_encryption_policy(&self) -> bool
pub const fn strict_encryption_policy(&self) -> bool
Bits: 0..1
Sourcepub const fn with_strict_encryption_policy_checked(
self,
value: bool,
) -> Result<Self, ()>
pub const fn with_strict_encryption_policy_checked( self, value: bool, ) -> Result<Self, ()>
Bits: 0..1
Sourcepub const fn with_strict_encryption_policy(self, value: bool) -> Self
pub const fn with_strict_encryption_policy(self, value: bool) -> Self
Bits: 0..1
Sourcepub const fn set_strict_encryption_policy(&mut self, value: bool)
pub const fn set_strict_encryption_policy(&mut self, value: bool)
Bits: 0..1
Sourcepub const fn set_strict_encryption_policy_checked(
&mut self,
value: bool,
) -> Result<(), ()>
pub const fn set_strict_encryption_policy_checked( &mut self, value: bool, ) -> Result<(), ()>
Bits: 0..1
Sourcepub const fn control_ak_cert_provisioning(&self) -> bool
pub const fn control_ak_cert_provisioning(&self) -> bool
Bits: 2..3
Sourcepub const fn with_control_ak_cert_provisioning_checked(
self,
value: bool,
) -> Result<Self, ()>
pub const fn with_control_ak_cert_provisioning_checked( self, value: bool, ) -> Result<Self, ()>
Bits: 2..3
Sourcepub const fn with_control_ak_cert_provisioning(self, value: bool) -> Self
pub const fn with_control_ak_cert_provisioning(self, value: bool) -> Self
Bits: 2..3
Sourcepub const fn set_control_ak_cert_provisioning(&mut self, value: bool)
pub const fn set_control_ak_cert_provisioning(&mut self, value: bool)
Bits: 2..3
Sourcepub const fn set_control_ak_cert_provisioning_checked(
&mut self,
value: bool,
) -> Result<(), ()>
pub const fn set_control_ak_cert_provisioning_checked( &mut self, value: bool, ) -> Result<(), ()>
Bits: 2..3
Sourcepub const fn attempt_ak_cert_callback(&self) -> bool
pub const fn attempt_ak_cert_callback(&self) -> bool
Bits: 3..4
Sourcepub const fn with_attempt_ak_cert_callback_checked(
self,
value: bool,
) -> Result<Self, ()>
pub const fn with_attempt_ak_cert_callback_checked( self, value: bool, ) -> Result<Self, ()>
Bits: 3..4
Sourcepub const fn with_attempt_ak_cert_callback(self, value: bool) -> Self
pub const fn with_attempt_ak_cert_callback(self, value: bool) -> Self
Bits: 3..4
Sourcepub const fn set_attempt_ak_cert_callback(&mut self, value: bool)
pub const fn set_attempt_ak_cert_callback(&mut self, value: bool)
Bits: 3..4
Trait Implementations§
Source§impl Clone for ManagementVtlFeatures
impl Clone for ManagementVtlFeatures
Source§fn clone(&self) -> ManagementVtlFeatures
fn clone(&self) -> ManagementVtlFeatures
Returns a duplicate of the value. Read more
1.0.0 · 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 ManagementVtlFeatures
impl Debug for ManagementVtlFeatures
Source§impl Default for ManagementVtlFeatures
impl Default for ManagementVtlFeatures
Source§impl<'de> Deserialize<'de> for ManagementVtlFeatures
impl<'de> Deserialize<'de> for ManagementVtlFeatures
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 From<ManagementVtlFeatures> for u64
impl From<ManagementVtlFeatures> for u64
Source§fn from(v: ManagementVtlFeatures) -> u64
fn from(v: ManagementVtlFeatures) -> u64
Converts to this type from the input type.
Source§impl From<u64> for ManagementVtlFeatures
impl From<u64> for ManagementVtlFeatures
Source§impl Serialize for ManagementVtlFeatures
impl Serialize for ManagementVtlFeatures
impl Copy for ManagementVtlFeatures
Auto Trait Implementations§
impl Freeze for ManagementVtlFeatures
impl RefUnwindSafe for ManagementVtlFeatures
impl Send for ManagementVtlFeatures
impl Sync for ManagementVtlFeatures
impl Unpin for ManagementVtlFeatures
impl UnwindSafe for ManagementVtlFeatures
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