pub struct NirsLayout<'a> { /* private fields */ }Implementations§
Source§impl<'a> NirsLayout<'a>
impl<'a> NirsLayout<'a>
pub fn new(layout: &'a BidsLayout) -> Self
pub fn get_nirs_files(&self) -> Result<Vec<BidsFile>>
pub fn get_nirs_files_for_subject(&self, s: &str) -> Result<Vec<BidsFile>>
pub fn get_nirs_files_for_task(&self, t: &str) -> Result<Vec<BidsFile>>
pub fn get_channels(&self, f: &BidsFile) -> Result<Option<Vec<Channel>>>
pub fn get_optodes(&self, f: &BidsFile) -> Result<Option<Vec<Optode>>>
pub fn get_events(&self, f: &BidsFile) -> Result<Option<Vec<EegEvent>>>
pub fn get_coordsystem(&self, f: &BidsFile) -> Result<Option<CoordinateSystem>>
pub fn get_metadata(&self, f: &BidsFile) -> Result<Option<NirsMetadata>>
pub fn get_all_channels_files(&self) -> Result<Vec<BidsFile>>
pub fn get_all_optodes_files(&self) -> Result<Vec<BidsFile>>
pub fn get_nirs_subjects(&self) -> Result<Vec<String>>
pub fn get_nirs_tasks(&self) -> Result<Vec<String>>
pub fn summary(&self) -> Result<NirsSummary>
Auto Trait Implementations§
impl<'a> Freeze for NirsLayout<'a>
impl<'a> !RefUnwindSafe for NirsLayout<'a>
impl<'a> !Send for NirsLayout<'a>
impl<'a> !Sync for NirsLayout<'a>
impl<'a> Unpin for NirsLayout<'a>
impl<'a> UnsafeUnpin for NirsLayout<'a>
impl<'a> !UnwindSafe for NirsLayout<'a>
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