pub enum NodeBackgroundColorMode {
Auto,
Theme,
Light,
Dark,
Fixed {
r: f32,
g: f32,
b: f32,
},
}Variants§
Trait Implementations§
Source§impl Clone for NodeBackgroundColorMode
impl Clone for NodeBackgroundColorMode
Source§fn clone(&self) -> NodeBackgroundColorMode
fn clone(&self) -> NodeBackgroundColorMode
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 NodeBackgroundColorMode
impl Debug for NodeBackgroundColorMode
Source§impl PartialEq for NodeBackgroundColorMode
impl PartialEq for NodeBackgroundColorMode
impl Copy for NodeBackgroundColorMode
impl StructuralPartialEq for NodeBackgroundColorMode
Auto Trait Implementations§
impl Freeze for NodeBackgroundColorMode
impl RefUnwindSafe for NodeBackgroundColorMode
impl Send for NodeBackgroundColorMode
impl Sync for NodeBackgroundColorMode
impl Unpin for NodeBackgroundColorMode
impl UnsafeUnpin for NodeBackgroundColorMode
impl UnwindSafe for NodeBackgroundColorMode
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