pub struct FrBounds {
pub minx: Option<Vec<f64>>,
pub maxx: Option<Vec<f64>>,
pub miny: Option<Vec<f64>>,
pub maxy: Option<Vec<f64>>,
}Expand description
Optional per-vertex bounding box constraints.
Fields§
§minx: Option<Vec<f64>>Minimum x coordinate per vertex (None = unbounded).
maxx: Option<Vec<f64>>Maximum x coordinate per vertex (None = unbounded).
miny: Option<Vec<f64>>Minimum y coordinate per vertex (None = unbounded).
maxy: Option<Vec<f64>>Maximum y coordinate per vertex (None = unbounded).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FrBounds
impl RefUnwindSafe for FrBounds
impl Send for FrBounds
impl Sync for FrBounds
impl Unpin for FrBounds
impl UnsafeUnpin for FrBounds
impl UnwindSafe for FrBounds
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