pub enum AlignContent {
Start,
End,
Center,
Stretch,
SpaceBetween,
SpaceAround,
SpaceEvenly,
}Expand description
CSS align-content values - distribution of flex lines / grid
tracks along the cross axis.
Variants§
Start
Pack lines at the start.
End
Pack lines at the end.
Center
Pack lines at the center.
Stretch
Stretch lines to fill the cross axis (CSS initial value).
SpaceBetween
Even gaps between lines, none at the edges.
SpaceAround
Half-size gaps at the edges.
SpaceEvenly
Equal gaps everywhere including edges.
Trait Implementations§
Source§impl Clone for AlignContent
impl Clone for AlignContent
Source§fn clone(&self) -> AlignContent
fn clone(&self) -> AlignContent
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 moreSource§impl Debug for AlignContent
impl Debug for AlignContent
Source§impl PartialEq for AlignContent
impl PartialEq for AlignContent
Source§fn eq(&self, other: &AlignContent) -> bool
fn eq(&self, other: &AlignContent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AlignContent
impl Eq for AlignContent
impl StructuralPartialEq for AlignContent
Auto Trait Implementations§
impl Freeze for AlignContent
impl RefUnwindSafe for AlignContent
impl Send for AlignContent
impl Sync for AlignContent
impl Unpin for AlignContent
impl UnsafeUnpin for AlignContent
impl UnwindSafe for AlignContent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> DynEq for T
impl<T> DynEq for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.