pub enum ThumbnailResolution {
Large,
Original,
Small,
}Expand description
The wallpaper’s thumbnail resolution
Variants§
Large
The best thumbnail resolution
Original
The “original” thumbnail resolution, not clear what that means
Small
The lowest thumbnail resolution
Trait Implementations§
Source§impl Clone for ThumbnailResolution
impl Clone for ThumbnailResolution
Source§fn clone(&self) -> ThumbnailResolution
fn clone(&self) -> ThumbnailResolution
Returns a duplicate of the value. Read more
1.0.0 · 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 ThumbnailResolution
impl Debug for ThumbnailResolution
Source§impl<'de> Deserialize<'de> for ThumbnailResolution
impl<'de> Deserialize<'de> for ThumbnailResolution
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 Serialize for ThumbnailResolution
impl Serialize for ThumbnailResolution
impl Copy for ThumbnailResolution
Auto Trait Implementations§
impl Freeze for ThumbnailResolution
impl RefUnwindSafe for ThumbnailResolution
impl Send for ThumbnailResolution
impl Sync for ThumbnailResolution
impl Unpin for ThumbnailResolution
impl UnwindSafe for ThumbnailResolution
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