pub struct MedicalPerformanceMetrics {
pub total_patients: u64,
pub average_processing_time: f64,
pub privacy_score: Option<f64>,
pub compliance_score: Option<f64>,
pub data_quality: Option<f64>,
}Expand description
Medical library performance summary metrics
Fields§
§total_patients: u64§average_processing_time: f64§privacy_score: Option<f64>Privacy / compliance / data-quality scores. None = not measured. This scaffold does
not compute these, so it must not fabricate them — previously new() claimed a hardcoded
95% private / 98% compliant / 92% quality for a library that measures none of it.
compliance_score: Option<f64>§data_quality: Option<f64>Implementations§
Trait Implementations§
Source§impl Clone for MedicalPerformanceMetrics
impl Clone for MedicalPerformanceMetrics
Source§fn clone(&self) -> MedicalPerformanceMetrics
fn clone(&self) -> MedicalPerformanceMetrics
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 moreAuto Trait Implementations§
impl Freeze for MedicalPerformanceMetrics
impl RefUnwindSafe for MedicalPerformanceMetrics
impl Send for MedicalPerformanceMetrics
impl Sync for MedicalPerformanceMetrics
impl Unpin for MedicalPerformanceMetrics
impl UnsafeUnpin for MedicalPerformanceMetrics
impl UnwindSafe for MedicalPerformanceMetrics
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more