pub struct LayoutBounds {
pub min_x: f64,
pub min_y: f64,
pub max_x: f64,
pub max_y: f64,
}Expand description
Viewport bounds for graph layout.
Fields§
§min_x: f64§min_y: f64§max_x: f64§max_y: f64Trait Implementations§
Source§impl Clone for LayoutBounds
impl Clone for LayoutBounds
Source§fn clone(&self) -> LayoutBounds
fn clone(&self) -> LayoutBounds
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 moreAuto Trait Implementations§
impl Freeze for LayoutBounds
impl RefUnwindSafe for LayoutBounds
impl Send for LayoutBounds
impl Sync for LayoutBounds
impl Unpin for LayoutBounds
impl UnwindSafe for LayoutBounds
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