pub enum GridLine {
Auto,
Number(i32),
Span(u32),
}Expand description
Value for grid-row-start, grid-row-end, grid-column-start,
grid-column-end. Lynx accepts numeric line references and
span <integer>.
Variants§
Auto
auto — let the layout algorithm decide.
Number(i32)
Numeric line reference; negative values count from the end.
Span(u32)
span <integer> — span N tracks from the opposite edge.
Trait Implementations§
impl Copy for GridLine
impl StructuralPartialEq for GridLine
Auto Trait Implementations§
impl Freeze for GridLine
impl RefUnwindSafe for GridLine
impl Send for GridLine
impl Sync for GridLine
impl Unpin for GridLine
impl UnsafeUnpin for GridLine
impl UnwindSafe for GridLine
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