pub enum BackgroundType {
Fill(BackgroundTypeFill),
Wallpaper(BackgroundTypeWallpaper),
Pattern(BackgroundTypePattern),
ChatTheme(BackgroundTypeChatTheme),
}Expand description
The type of a chat background.
Variants§
Fill(BackgroundTypeFill)
Automatically filled based on colours.
Wallpaper(BackgroundTypeWallpaper)
A wallpaper image in JPEG format.
Pattern(BackgroundTypePattern)
A PNG or TGV pattern filled with a colour.
ChatTheme(BackgroundTypeChatTheme)
One of the default chat themes.
Trait Implementations§
Source§impl Clone for BackgroundType
impl Clone for BackgroundType
Source§fn clone(&self) -> BackgroundType
fn clone(&self) -> BackgroundType
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 BackgroundType
impl Debug for BackgroundType
Source§impl<'de> Deserialize<'de> for BackgroundType
impl<'de> Deserialize<'de> for BackgroundType
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
Auto Trait Implementations§
impl Freeze for BackgroundType
impl RefUnwindSafe for BackgroundType
impl Send for BackgroundType
impl Sync for BackgroundType
impl Unpin for BackgroundType
impl UnsafeUnpin for BackgroundType
impl UnwindSafe for BackgroundType
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