Struct css_style::padding::Padding [−][src]
pub struct Padding {
pub top: Option<Length>,
pub right: Option<Length>,
pub bottom: Option<Length>,
pub left: Option<Length>,
}
Expand description
use css_style::{Style, unit::px};
Style::default()
.and_padding(|conf| {
conf.x(px(2)) // equal to conf.left(px(2)).right(px(2))
.y(px(4))
});
Fields
top: Option<Length>
right: Option<Length>
bottom: Option<Length>
left: Option<Length>
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Padding
impl UnwindSafe for Padding
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