pub struct Grid {
pub left: f32,
pub top: f32,
pub right: f32,
pub bottom: f32,
pub color: Option<Color>,
pub stroke_width: f32,
pub verticals: usize,
pub hidden_verticals: Vec<usize>,
pub horizontals: usize,
pub hidden_horizontals: Vec<usize>,
}Fields§
§left: f32§top: f32§right: f32§bottom: f32§color: Option<Color>§stroke_width: f32§verticals: usize§horizontals: usizeImplementations§
Trait Implementations§
source§impl PartialEq<Grid> for Grid
impl PartialEq<Grid> for Grid
impl StructuralPartialEq for Grid
Auto Trait Implementations§
impl RefUnwindSafe for Grid
impl Send for Grid
impl Sync for Grid
impl Unpin for Grid
impl UnwindSafe for Grid
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