Enum css_style::gap::Gap [−][src]
pub enum Gap {
Value(LengthPercent),
RowColumn(LengthPercent, LengthPercent),
}
Expand description
use css_style::{Style, Gap, unit::{px, em}};
Style::default()
.gap(px(2))
// this can take percent value too (.e.g 40%).
.gap(0.4)
// and can take row and column each with different value
.gap((em(4.), em(8.)))
// we can also use declarative style like this:
.gap(Gap::row(em(4.)).and_column(em(4.)));
Variants
Value(LengthPercent)
Tuple Fields
RowColumn(LengthPercent, LengthPercent)
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Gap
impl UnwindSafe for Gap
Blanket Implementations
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
Mutably borrows from an owned value. Read more
Convert into T with values clamped to the color defined bounds Read more
Convert into T. The resulting color might be invalid in its color space Read more
Convert into T, returning ok if the color is inside of its defined
range, otherwise an OutOfBounds
error is returned which contains
the unclamped color. Read more