pub struct Trc {
pub path_file_type: u8,
pub path_file_type_description: String,
pub file_name: Option<PathBuf>,
pub data_rate: f32,
pub camera_rate: f32,
pub num_frames: usize,
pub units: [char; 4],
pub marker_names: Vec<String>,
pub first_frame: usize,
pub data: Grid<MarkerPoint>,
}Expand description
The TRC struct contains the data for writing a TRC file.
Fields§
§path_file_type: u8§path_file_type_description: String§file_name: Option<PathBuf>§data_rate: f32§camera_rate: f32§num_frames: usize§units: [char; 4]§marker_names: Vec<String>§first_frame: usize§data: Grid<MarkerPoint>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Trc
impl RefUnwindSafe for Trc
impl Send for Trc
impl Sync for Trc
impl Unpin for Trc
impl UnwindSafe for Trc
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