#[repr(C)]pub struct SubBlockStatisticsInterop {
pub sub_block_count: c_int,
pub min_m_index: c_int,
pub max_m_index: c_int,
pub bounding_box: IntRectInterop,
pub bounding_box_layer0: IntRectInterop,
pub dim_bounds: DimBoundsInterop,
}Expand description
This structure contains basic statistics about an CZI-document.
Fields§
§sub_block_count: c_int< The number of sub-blocks.
min_m_index: c_int< The minimum M-index.
max_m_index: c_int< The maximum M-index.
bounding_box: IntRectInterop< The bounding-box determined from all sub-blocks.
bounding_box_layer0: IntRectInterop< The minimal axis-aligned-bounding box determined only from the logical coordinates of the sub-blocks on pyramid-layer0 in the document.
dim_bounds: DimBoundsInterop< The dimension bounds.
Trait Implementations§
Source§impl Clone for SubBlockStatisticsInterop
impl Clone for SubBlockStatisticsInterop
Source§fn clone(&self) -> SubBlockStatisticsInterop
fn clone(&self) -> SubBlockStatisticsInterop
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 SubBlockStatisticsInterop
impl Debug for SubBlockStatisticsInterop
impl Copy for SubBlockStatisticsInterop
Auto Trait Implementations§
impl Freeze for SubBlockStatisticsInterop
impl RefUnwindSafe for SubBlockStatisticsInterop
impl Send for SubBlockStatisticsInterop
impl Sync for SubBlockStatisticsInterop
impl Unpin for SubBlockStatisticsInterop
impl UnsafeUnpin for SubBlockStatisticsInterop
impl UnwindSafe for SubBlockStatisticsInterop
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