pub enum Gradient {
Linear(Linear),
}
Expand description
A fill which transitions colors progressively along a direction, either linearly, radially (TBD), or conically (TBD).
Variants§
Implementations§
Trait Implementations§
Source§impl From<Gradient> for Background
impl From<Gradient> for Background
impl Copy for Gradient
impl StructuralPartialEq for Gradient
Auto Trait Implementations§
impl Freeze for Gradient
impl RefUnwindSafe for Gradient
impl Send for Gradient
impl Sync for Gradient
impl Unpin for Gradient
impl UnwindSafe for Gradient
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