pub struct KkBounds {
pub minx: Option<Vec<f64>>,
pub maxx: Option<Vec<f64>>,
pub miny: Option<Vec<f64>>,
pub maxy: Option<Vec<f64>>,
}Expand description
Per-vertex coordinate bounds for the 2D KK layout.
Fields§
§minx: Option<Vec<f64>>Minimum x coordinate per vertex.
maxx: Option<Vec<f64>>Maximum x coordinate per vertex.
miny: Option<Vec<f64>>Minimum y coordinate per vertex.
maxy: Option<Vec<f64>>Maximum y coordinate per vertex.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KkBounds
impl RefUnwindSafe for KkBounds
impl Send for KkBounds
impl Sync for KkBounds
impl Unpin for KkBounds
impl UnsafeUnpin for KkBounds
impl UnwindSafe for KkBounds
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