pub struct MosaicData {
pub row_widths: Array1<f64>,
pub cell_heights: Array2<f64>,
}Expand description
The normalized geometry behind a mosaic plot.
Fields§
§row_widths: Array1<f64>Row marginal widths (sum to 1).
cell_heights: Array2<f64>Conditional column heights within each row (each row sums to 1).
Trait Implementations§
Source§impl Clone for MosaicData
impl Clone for MosaicData
Source§fn clone(&self) -> MosaicData
fn clone(&self) -> MosaicData
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 moreAuto Trait Implementations§
impl Freeze for MosaicData
impl RefUnwindSafe for MosaicData
impl Send for MosaicData
impl Sync for MosaicData
impl Unpin for MosaicData
impl UnsafeUnpin for MosaicData
impl UnwindSafe for MosaicData
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