pub struct RunInfo {
pub entities: StringEntities,
pub duration: f64,
pub tr: f64,
pub image: Option<String>,
pub n_vols: usize,
}Expand description
Metadata about a single run in a BIDS dataset.
Contains the run’s BIDS entities, temporal parameters (duration, TR), the path to the associated image file, and the number of volumes. Used by variable types to track which runs their data belongs to.
Fields§
§entities: StringEntities§duration: f64§tr: f64§image: Option<String>§n_vols: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for RunInfo
impl RefUnwindSafe for RunInfo
impl Send for RunInfo
impl Sync for RunInfo
impl Unpin for RunInfo
impl UnsafeUnpin for RunInfo
impl UnwindSafe for RunInfo
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