Struct css_style::position::Position [−][src]
pub struct Position {
pub position: Option<PositionType>,
pub left: Option<PostionLength>,
pub top: Option<PostionLength>,
pub right: Option<PostionLength>,
pub bottom: Option<PostionLength>,
pub z_index: Option<i32>,
pub clip: Option<Clip>,
}
Expand description
use css_style::{Style, unit::px};
Style::default()
.and_position(|conf| {
conf.absolute().top(px(28)).left(px(40))
});
Fields
position: Option<PositionType>
left: Option<PostionLength>
top: Option<PostionLength>
right: Option<PostionLength>
bottom: Option<PostionLength>
z_index: Option<i32>
clip: Option<Clip>
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Position
impl UnwindSafe for Position
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