pub enum BackgroundSize {
Fill,
Cover,
Contain,
}Expand description
How a background image is scaled to fit a page.
Variants§
Fill
Stretch the image to the page’s exact dimensions (default).
Cover
Scale to fully cover the page; crops if aspect ratio differs.
Contain
Scale to fit within the page; letterboxes if aspect ratio differs.
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 Default for BackgroundSize
impl Default for BackgroundSize
Source§fn default() -> BackgroundSize
fn default() -> BackgroundSize
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackgroundSize
impl<'de> Deserialize<'de> for BackgroundSize
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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 ==.Source§impl Serialize for BackgroundSize
impl Serialize for BackgroundSize
impl Copy for BackgroundSize
impl Eq for BackgroundSize
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