pub struct PrivacyPolicy {
pub data_processor_name: String,
pub privacy_policy_url: Option<String>,
pub data_residency_region: DataResidencyRegion,
pub retention_days: u32,
}Fields§
§data_processor_name: String§privacy_policy_url: Option<String>§data_residency_region: DataResidencyRegion§retention_days: u32Surfaced in the consent widget Art. 13 notice.
Trait Implementations§
Source§impl Clone for PrivacyPolicy
impl Clone for PrivacyPolicy
Source§fn clone(&self) -> PrivacyPolicy
fn clone(&self) -> PrivacyPolicy
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 PrivacyPolicy
impl Debug for PrivacyPolicy
Auto Trait Implementations§
impl Freeze for PrivacyPolicy
impl RefUnwindSafe for PrivacyPolicy
impl Send for PrivacyPolicy
impl Sync for PrivacyPolicy
impl Unpin for PrivacyPolicy
impl UnsafeUnpin for PrivacyPolicy
impl UnwindSafe for PrivacyPolicy
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