pub enum ServiceCompliancetype {
Hipaa,
Pci,
Unknown(String),
}Expand description
Inline enum for Service.complianceType.
Variants§
Trait Implementations§
Source§impl Clone for ServiceCompliancetype
impl Clone for ServiceCompliancetype
Source§fn clone(&self) -> ServiceCompliancetype
fn clone(&self) -> ServiceCompliancetype
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 ServiceCompliancetype
impl Debug for ServiceCompliancetype
Source§impl Default for ServiceCompliancetype
impl Default for ServiceCompliancetype
Source§fn default() -> ServiceCompliancetype
fn default() -> ServiceCompliancetype
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceCompliancetype
impl<'de> Deserialize<'de> for ServiceCompliancetype
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 Display for ServiceCompliancetype
impl Display for ServiceCompliancetype
Source§impl PartialEq for ServiceCompliancetype
impl PartialEq for ServiceCompliancetype
Source§fn eq(&self, other: &ServiceCompliancetype) -> bool
fn eq(&self, other: &ServiceCompliancetype) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceCompliancetype
impl Serialize for ServiceCompliancetype
impl StructuralPartialEq for ServiceCompliancetype
Auto Trait Implementations§
impl Freeze for ServiceCompliancetype
impl RefUnwindSafe for ServiceCompliancetype
impl Send for ServiceCompliancetype
impl Sync for ServiceCompliancetype
impl Unpin for ServiceCompliancetype
impl UnsafeUnpin for ServiceCompliancetype
impl UnwindSafe for ServiceCompliancetype
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