pub enum DesktopBannerBackground {
System,
Light,
Dark,
Color {
r: u8,
g: u8,
b: u8,
a: u8,
},
}Expand description
Card chrome. System follows the OS; a hex color is a solid fill.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DesktopBannerBackground
impl Clone for DesktopBannerBackground
Source§impl Debug for DesktopBannerBackground
impl Debug for DesktopBannerBackground
Source§impl Default for DesktopBannerBackground
impl Default for DesktopBannerBackground
impl Eq for DesktopBannerBackground
Source§impl PartialEq for DesktopBannerBackground
impl PartialEq for DesktopBannerBackground
impl StructuralPartialEq for DesktopBannerBackground
Auto Trait Implementations§
impl Freeze for DesktopBannerBackground
impl RefUnwindSafe for DesktopBannerBackground
impl Send for DesktopBannerBackground
impl Sync for DesktopBannerBackground
impl Unpin for DesktopBannerBackground
impl UnsafeUnpin for DesktopBannerBackground
impl UnwindSafe for DesktopBannerBackground
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