pub(crate) enum ServerOrColor {
    Server(Paint),
    Color {
        color: Color,
        opacity: Opacity,
    },
}Variants§
Auto Trait Implementations§
impl Freeze for ServerOrColor
impl !RefUnwindSafe for ServerOrColor
impl Send for ServerOrColor
impl Sync for ServerOrColor
impl Unpin for ServerOrColor
impl !UnwindSafe for ServerOrColor
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