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