pub struct PrivacyEntry {
pub mechanism_name: String,
pub epsilon: f64,
pub delta: f64,
pub composition: CompositionType,
}Expand description
A single privacy expense entry.
Fields§
§mechanism_name: String§epsilon: f64§delta: f64§composition: CompositionTypeTrait Implementations§
Source§impl Clone for PrivacyEntry
impl Clone for PrivacyEntry
Source§fn clone(&self) -> PrivacyEntry
fn clone(&self) -> PrivacyEntry
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 moreAuto Trait Implementations§
impl Freeze for PrivacyEntry
impl RefUnwindSafe for PrivacyEntry
impl Send for PrivacyEntry
impl Sync for PrivacyEntry
impl Unpin for PrivacyEntry
impl UnsafeUnpin for PrivacyEntry
impl UnwindSafe for PrivacyEntry
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