pub struct CompliancePlan {
pub hipaa_enabled: Option<bool>,
pub pci_enabled: Option<bool>,
}
Fields§
§hipaa_enabled: Option<bool>
When this is enabled, no logs, recordings, or transcriptions will be stored. At the end of the call, you will still receive an end-of-call-report message to store on your server. Defaults to false.
pci_enabled: Option<bool>
When this is enabled, the user will be restricted to use PCI-compliant providers, and no logs or transcripts are stored. At the end of the call, you will receive an end-of-call-report message to store on your server. Defaults to false.
Implementations§
Source§impl CompliancePlan
impl CompliancePlan
pub fn new() -> CompliancePlan
Trait Implementations§
Source§impl Clone for CompliancePlan
impl Clone for CompliancePlan
Source§fn clone(&self) -> CompliancePlan
fn clone(&self) -> CompliancePlan
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CompliancePlan
impl Debug for CompliancePlan
Source§impl Default for CompliancePlan
impl Default for CompliancePlan
Source§fn default() -> CompliancePlan
fn default() -> CompliancePlan
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompliancePlan
impl<'de> Deserialize<'de> for CompliancePlan
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 CompliancePlan
impl PartialEq for CompliancePlan
Source§impl Serialize for CompliancePlan
impl Serialize for CompliancePlan
impl StructuralPartialEq for CompliancePlan
Auto Trait Implementations§
impl Freeze for CompliancePlan
impl RefUnwindSafe for CompliancePlan
impl Send for CompliancePlan
impl Sync for CompliancePlan
impl Unpin for CompliancePlan
impl UnwindSafe for CompliancePlan
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