pub enum WallPaperSettings {
WallPaperSettings(WallPaperSettings),
}Expand description
Variants§
WallPaperSettings(WallPaperSettings)
Trait Implementations§
Source§impl Clone for WallPaperSettings
impl Clone for WallPaperSettings
Source§fn clone(&self) -> WallPaperSettings
fn clone(&self) -> WallPaperSettings
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 WallPaperSettings
impl Debug for WallPaperSettings
Source§impl Deserializable for WallPaperSettings
impl Deserializable for WallPaperSettings
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<WallPaperSettings> for WallPaperSettings
impl From<WallPaperSettings> for WallPaperSettings
Source§fn from(x: WallPaperSettings) -> Self
fn from(x: WallPaperSettings) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WallPaperSettings
impl PartialEq for WallPaperSettings
Source§impl Serializable for WallPaperSettings
impl Serializable for WallPaperSettings
Source§impl TryFrom<WallPaperSettings> for WallPaperSettings
impl TryFrom<WallPaperSettings> for WallPaperSettings
Source§type Error = WallPaperSettings
type Error = WallPaperSettings
The type returned in the event of a conversion error.
impl StructuralPartialEq for WallPaperSettings
Auto Trait Implementations§
impl Freeze for WallPaperSettings
impl RefUnwindSafe for WallPaperSettings
impl Send for WallPaperSettings
impl Sync for WallPaperSettings
impl Unpin for WallPaperSettings
impl UnsafeUnpin for WallPaperSettings
impl UnwindSafe for WallPaperSettings
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