pub enum BgSizeVal {
Auto,
Px(i32),
Percent(f32),
}Expand description
CSS background-size の1軸ぶんの値。
Variants§
Trait Implementations§
impl Copy for BgSizeVal
impl StructuralPartialEq for BgSizeVal
Auto Trait Implementations§
impl Freeze for BgSizeVal
impl RefUnwindSafe for BgSizeVal
impl Send for BgSizeVal
impl Sync for BgSizeVal
impl Unpin for BgSizeVal
impl UnsafeUnpin for BgSizeVal
impl UnwindSafe for BgSizeVal
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