pub struct MotionSummary {
pub n_subjects: usize,
pub n_recordings: usize,
pub subjects: Vec<String>,
pub tasks: Vec<String>,
pub sampling_frequency: Option<f64>,
pub channel_count: Option<usize>,
}Fields§
§n_subjects: usize§n_recordings: usize§subjects: Vec<String>§tasks: Vec<String>§sampling_frequency: Option<f64>§channel_count: Option<usize>Trait Implementations§
Source§impl Debug for MotionSummary
impl Debug for MotionSummary
Auto Trait Implementations§
impl Freeze for MotionSummary
impl RefUnwindSafe for MotionSummary
impl Send for MotionSummary
impl Sync for MotionSummary
impl Unpin for MotionSummary
impl UnsafeUnpin for MotionSummary
impl UnwindSafe for MotionSummary
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