pub enum Spacing {
Around,
Between,
End,
Start,
}Variants§
Around
Equal spacing before, after and between all elements
Between
Equal spacing between elements, with no extra space on the ends
End
Elements packed together at the start, leaving space at the end
Start
Elements packed together at the end, leaving space at the start
Trait Implementations§
impl Copy for Spacing
impl StructuralPartialEq for Spacing
Auto Trait Implementations§
impl Freeze for Spacing
impl RefUnwindSafe for Spacing
impl Send for Spacing
impl Sync for Spacing
impl Unpin for Spacing
impl UnwindSafe for Spacing
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