pub struct VitalSigns {
pub vital_signs_id: String,
pub timestamp: u64,
pub blood_pressure: BloodPressure,
pub heart_rate: u32,
pub respiratory_rate: u32,
pub temperature: f64,
pub oxygen_saturation: f64,
pub height: Option<f64>,
pub weight: Option<f64>,
pub bmi: Option<f64>,
}Expand description
Vital signs
Fields§
§vital_signs_id: String§timestamp: u64§blood_pressure: BloodPressure§heart_rate: u32§respiratory_rate: u32§temperature: f64§oxygen_saturation: f64§height: Option<f64>§weight: Option<f64>§bmi: Option<f64>Implementations§
Source§impl VitalSigns
impl VitalSigns
Trait Implementations§
Source§impl Clone for VitalSigns
impl Clone for VitalSigns
Source§fn clone(&self) -> VitalSigns
fn clone(&self) -> VitalSigns
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 VitalSigns
impl Debug for VitalSigns
Source§impl<'de> Deserialize<'de> for VitalSigns
impl<'de> Deserialize<'de> for VitalSigns
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
Auto Trait Implementations§
impl Freeze for VitalSigns
impl RefUnwindSafe for VitalSigns
impl Send for VitalSigns
impl Sync for VitalSigns
impl Unpin for VitalSigns
impl UnsafeUnpin for VitalSigns
impl UnwindSafe for VitalSigns
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