pub struct BloodPressureReading {
pub systolic: i32,
pub diastolic: i32,
pub pulse: i32,
}Fields§
§systolic: i32§diastolic: i32§pulse: i32Trait Implementations§
Source§impl Clone for BloodPressureReading
impl Clone for BloodPressureReading
Source§fn clone(&self) -> BloodPressureReading
fn clone(&self) -> BloodPressureReading
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 BloodPressureReading
impl Debug for BloodPressureReading
Source§impl PartialEq for BloodPressureReading
impl PartialEq for BloodPressureReading
Source§fn eq(&self, other: &BloodPressureReading) -> bool
fn eq(&self, other: &BloodPressureReading) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BloodPressureReading
Auto Trait Implementations§
impl Freeze for BloodPressureReading
impl RefUnwindSafe for BloodPressureReading
impl Send for BloodPressureReading
impl Sync for BloodPressureReading
impl Unpin for BloodPressureReading
impl UnsafeUnpin for BloodPressureReading
impl UnwindSafe for BloodPressureReading
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