pub struct Averaging {
pub moving_average_pressure: u8,
pub average_pressure: u8,
pub average_temperature: u8,
}
Fields§
§moving_average_pressure: u8
§average_pressure: u8
§average_temperature: u8
Trait Implementations§
Source§impl FromByteSlice for Averaging
impl FromByteSlice for Averaging
Source§fn bytes_expected() -> usize
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> Averaging
fn from_le_byte_slice(bytes: &[u8]) -> Averaging
Deserialize the implementing type from a byte slice.
impl Copy for Averaging
impl Eq for Averaging
impl StructuralPartialEq for Averaging
Auto Trait Implementations§
impl Freeze for Averaging
impl RefUnwindSafe for Averaging
impl Send for Averaging
impl Sync for Averaging
impl Unpin for Averaging
impl UnwindSafe for Averaging
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