pub struct Message {
pub global_mesg_num: u16,
pub name: &'static str,
pub fields: Vec<Field>,
}Expand description
A fully-transformed FIT message.
Fields§
§global_mesg_num: u16Profile-level message number.
name: &'static strSnake-case canonical message name from Profile.xlsx.
fields: Vec<Field>Fully-transformed fields.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnsafeUnpin for Message
impl UnwindSafe for Message
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