pub enum Gradient {
Linear(Linear),
}Expand description
A fill which linearly interpolates colors along a direction.
For a gradient which can be used as a fill for a background of a widget, see crate::core::Gradient.
Variants§
Linear(Linear)
A linear gradient interpolates colors along a direction from its start to its end
point.
Implementations§
Trait Implementations§
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 UnsafeUnpin 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