[−][src]Struct piet_common::FixedLinearGradient
Specification of a linear gradient.
This specification is in terms of image-space coordinates. In many
cases, it is better to specify coordinates relative to the Rect
of the item being drawn; for these, use LinearGradient instead.
Fields
start: PointThe start point (corresponding to pos 0.0).
end: PointThe end point (corresponding to pos 1.0).
stops: Vec<GradientStop, Global>The stops.
There must be at least two for the gradient to be valid.
Trait Implementations
impl Clone for FixedLinearGradient[src]
pub fn clone(&self) -> FixedLinearGradient[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for FixedLinearGradient[src]
impl From<FixedLinearGradient> for FixedGradient[src]
pub fn from(src: FixedLinearGradient) -> FixedGradient[src]
impl From<FixedLinearGradient> for PaintBrush[src]
pub fn from(src: FixedLinearGradient) -> PaintBrush[src]
Auto Trait Implementations
impl RefUnwindSafe for FixedLinearGradient[src]
impl Send for FixedLinearGradient[src]
impl Sync for FixedLinearGradient[src]
impl Unpin for FixedLinearGradient[src]
impl UnwindSafe for FixedLinearGradient[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> RoundFrom<T> for T[src]
pub fn round_from(x: T) -> T[src]
impl<T, U> RoundInto<U> for T where
U: RoundFrom<T>, [src]
U: RoundFrom<T>,
pub fn round_into(self) -> U[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,