pub struct PerfMetadata {
pub arterial_spin_labeling_type: Option<String>,
pub post_labeling_delay: Option<Value>,
pub background_suppression: Option<bool>,
pub m0_type: Option<String>,
pub repetition_time_preparation: Option<f64>,
pub echo_time: Option<f64>,
pub flip_angle: Option<f64>,
pub labeling_duration: Option<f64>,
pub total_acquired_pairs: Option<u32>,
pub vascular_crushing: Option<bool>,
pub manufacturer: Option<String>,
}Fields§
§arterial_spin_labeling_type: Option<String>§post_labeling_delay: Option<Value>§background_suppression: Option<bool>§m0_type: Option<String>§repetition_time_preparation: Option<f64>§echo_time: Option<f64>§flip_angle: Option<f64>§labeling_duration: Option<f64>§total_acquired_pairs: Option<u32>§vascular_crushing: Option<bool>§manufacturer: Option<String>Implementations§
Source§impl PerfMetadata
impl PerfMetadata
pub fn from_metadata(md: &BidsMetadata) -> Option<Self>
Trait Implementations§
Source§impl Clone for PerfMetadata
impl Clone for PerfMetadata
Source§fn clone(&self) -> PerfMetadata
fn clone(&self) -> PerfMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PerfMetadata
impl Debug for PerfMetadata
Source§impl<'de> Deserialize<'de> for PerfMetadata
impl<'de> Deserialize<'de> for PerfMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PerfMetadata
impl RefUnwindSafe for PerfMetadata
impl Send for PerfMetadata
impl Sync for PerfMetadata
impl Unpin for PerfMetadata
impl UnsafeUnpin for PerfMetadata
impl UnwindSafe for PerfMetadata
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