pub struct DatasetSummary {
pub version_major: u32,
pub version_minor: u32,
pub sizes: BTreeMap<String, usize>,
pub logical_frame_count: usize,
pub channels: Vec<SummaryChannel>,
pub pixel_type: Option<String>,
pub scaling: Option<SummaryScaling>,
}Fields§
§version_major: u32§version_minor: u32§sizes: BTreeMap<String, usize>§logical_frame_count: usize§channels: Vec<SummaryChannel>§pixel_type: Option<String>§scaling: Option<SummaryScaling>Trait Implementations§
Source§impl Clone for DatasetSummary
impl Clone for DatasetSummary
Source§fn clone(&self) -> DatasetSummary
fn clone(&self) -> DatasetSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DatasetSummary
impl Debug for DatasetSummary
Source§impl<'de> Deserialize<'de> for DatasetSummary
impl<'de> Deserialize<'de> for DatasetSummary
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
Source§impl PartialEq for DatasetSummary
impl PartialEq for DatasetSummary
Source§impl Serialize for DatasetSummary
impl Serialize for DatasetSummary
impl StructuralPartialEq for DatasetSummary
Auto Trait Implementations§
impl Freeze for DatasetSummary
impl RefUnwindSafe for DatasetSummary
impl Send for DatasetSummary
impl Sync for DatasetSummary
impl Unpin for DatasetSummary
impl UnsafeUnpin for DatasetSummary
impl UnwindSafe for DatasetSummary
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