pub enum StackSpacing {
None,
Xs,
Sm,
Md,
Lg,
Xl,
}Expand description
Spacing between stack items, mapped to Tailwind gap classes.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for StackSpacing
impl Clone for StackSpacing
Source§fn clone(&self) -> StackSpacing
fn clone(&self) -> StackSpacing
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for StackSpacing
Source§impl Debug for StackSpacing
impl Debug for StackSpacing
Source§impl Default for StackSpacing
impl Default for StackSpacing
Source§fn default() -> StackSpacing
fn default() -> StackSpacing
Returns the “default value” for a type. Read more
impl Eq for StackSpacing
Source§impl PartialEq for StackSpacing
impl PartialEq for StackSpacing
Source§fn eq(&self, other: &StackSpacing) -> bool
fn eq(&self, other: &StackSpacing) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StackSpacing
Auto Trait Implementations§
impl Freeze for StackSpacing
impl RefUnwindSafe for StackSpacing
impl Send for StackSpacing
impl Sync for StackSpacing
impl Unpin for StackSpacing
impl UnsafeUnpin for StackSpacing
impl UnwindSafe for StackSpacing
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