pub struct SubBlockStatistics {
pub subblock_count: usize,
pub dim_bounds: DimBounds,
pub bounding_box: Option<IntRect>,
pub bounding_box_layer0: Option<IntRect>,
pub scene_bounding_boxes: BTreeMap<i32, BoundingBoxes>,
pub min_m_index: Option<i32>,
pub max_m_index: Option<i32>,
}Fields§
§subblock_count: usize§dim_bounds: DimBounds§bounding_box: Option<IntRect>§bounding_box_layer0: Option<IntRect>§scene_bounding_boxes: BTreeMap<i32, BoundingBoxes>§min_m_index: Option<i32>§max_m_index: Option<i32>Trait Implementations§
Source§impl Clone for SubBlockStatistics
impl Clone for SubBlockStatistics
Source§fn clone(&self) -> SubBlockStatistics
fn clone(&self) -> SubBlockStatistics
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 SubBlockStatistics
impl Debug for SubBlockStatistics
Source§impl Default for SubBlockStatistics
impl Default for SubBlockStatistics
Source§impl PartialEq for SubBlockStatistics
impl PartialEq for SubBlockStatistics
impl Eq for SubBlockStatistics
impl StructuralPartialEq for SubBlockStatistics
Auto Trait Implementations§
impl Freeze for SubBlockStatistics
impl RefUnwindSafe for SubBlockStatistics
impl Send for SubBlockStatistics
impl Sync for SubBlockStatistics
impl Unpin for SubBlockStatistics
impl UnsafeUnpin for SubBlockStatistics
impl UnwindSafe for SubBlockStatistics
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