[][src]Enum azul_css::LayoutAlignContent

pub enum LayoutAlignContent {
    Stretch,
    Center,
    Start,
    End,
    SpaceBetween,
    SpaceAround,
}

Represents a align-content attribute

Variants

Stretch

Default value. Lines stretch to take up the remaining space

Center

Lines are packed toward the center of the flex container

Start

Lines are packed toward the start of the flex container

End

Lines are packed toward the end of the flex container

SpaceBetween

Lines are evenly distributed in the flex container

SpaceAround

Lines are evenly distributed in the flex container, with half-size spaces on either end

Trait Implementations

impl Clone for LayoutAlignContent[src]

impl Copy for LayoutAlignContent[src]

impl Debug for LayoutAlignContent[src]

impl Default for LayoutAlignContent[src]

impl Eq for LayoutAlignContent[src]

impl From<LayoutAlignContent> for CssProperty[src]

impl Hash for LayoutAlignContent[src]

impl Ord for LayoutAlignContent[src]

impl PartialEq<LayoutAlignContent> for LayoutAlignContent[src]

impl PartialOrd<LayoutAlignContent> for LayoutAlignContent[src]

impl StructuralEq for LayoutAlignContent[src]

impl StructuralPartialEq for LayoutAlignContent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.