pub enum BackgroundSize {
Auto,
Cover,
Contain,
Explicit(LengthPercentage, LengthPercentage),
}Expand description
The background-size value: a keyword or an explicit pair of
length-percentages.
Variants§
Auto
auto — use the intrinsic size.
Cover
cover — scale to cover the entire box, possibly cropping.
Contain
contain — scale to fit within the box without cropping.
Explicit(LengthPercentage, LengthPercentage)
Explicit width × height.
Trait Implementations§
Source§impl Clone for BackgroundSize
impl Clone for BackgroundSize
Source§fn clone(&self) -> BackgroundSize
fn clone(&self) -> BackgroundSize
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BackgroundSize
impl Debug for BackgroundSize
Source§impl PartialEq for BackgroundSize
impl PartialEq for BackgroundSize
Source§fn eq(&self, other: &BackgroundSize) -> bool
fn eq(&self, other: &BackgroundSize) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BackgroundSize
Auto Trait Implementations§
impl Freeze for BackgroundSize
impl RefUnwindSafe for BackgroundSize
impl Send for BackgroundSize
impl Sync for BackgroundSize
impl Unpin for BackgroundSize
impl UnsafeUnpin for BackgroundSize
impl UnwindSafe for BackgroundSize
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