pub enum GridPlacement {
Auto,
Line(i32),
Span(u32),
Named(String),
}Expand description
Grid placement value for a single edge.
Variants§
Trait Implementations§
Source§impl Clone for GridPlacement
impl Clone for GridPlacement
Source§fn clone(&self) -> GridPlacement
fn clone(&self) -> GridPlacement
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 moreSource§impl Debug for GridPlacement
impl Debug for GridPlacement
Source§impl Default for GridPlacement
impl Default for GridPlacement
Source§fn default() -> GridPlacement
fn default() -> GridPlacement
Returns the “default value” for a type. Read more
Source§impl PartialEq for GridPlacement
impl PartialEq for GridPlacement
impl StructuralPartialEq for GridPlacement
Auto Trait Implementations§
impl Freeze for GridPlacement
impl RefUnwindSafe for GridPlacement
impl Send for GridPlacement
impl Sync for GridPlacement
impl Unpin for GridPlacement
impl UnwindSafe for GridPlacement
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