Enum zng_color::gradient::LinearGradientAxis
source · pub enum LinearGradientAxis {
Angle(AngleRadian),
Line(Line),
}
Expand description
Variants§
Angle(AngleRadian)
Line defined by an angle. 0º is a line from bottom-to-top, 90º is a line from left-to-right.
The line end-points are calculated so that the full gradient is visible from corner-to-corner, this is sometimes called magic corners.
Line(Line)
Line defined by two points. If the points are inside the fill area the gradient is extended-out in the same direction defined by the line, according to the extend mode.
Trait Implementations§
source§impl Clone for LinearGradientAxis
impl Clone for LinearGradientAxis
source§fn clone(&self) -> LinearGradientAxis
fn clone(&self) -> LinearGradientAxis
Returns a copy 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 LinearGradientAxis
impl Debug for LinearGradientAxis
source§impl<'de> Deserialize<'de> for LinearGradientAxis
impl<'de> Deserialize<'de> for LinearGradientAxis
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<AngleDegree> for LinearGradientAxis
impl From<AngleDegree> for LinearGradientAxis
source§fn from(angle: AngleDegree) -> Self
fn from(angle: AngleDegree) -> Self
Converts to this type from the input type.
source§impl From<AngleGradian> for LinearGradientAxis
impl From<AngleGradian> for LinearGradientAxis
source§fn from(angle: AngleGradian) -> Self
fn from(angle: AngleGradian) -> Self
Converts to this type from the input type.
source§impl From<AngleRadian> for LinearGradientAxis
impl From<AngleRadian> for LinearGradientAxis
source§fn from(angle: AngleRadian) -> Self
fn from(angle: AngleRadian) -> Self
Converts to this type from the input type.
source§impl From<AngleTurn> for LinearGradientAxis
impl From<AngleTurn> for LinearGradientAxis
source§impl From<Line> for LinearGradientAxis
impl From<Line> for LinearGradientAxis
source§impl IntoVar<LinearGradientAxis> for AngleDegree
impl IntoVar<LinearGradientAxis> for AngleDegree
source§impl IntoVar<LinearGradientAxis> for AngleGradian
impl IntoVar<LinearGradientAxis> for AngleGradian
source§impl IntoVar<LinearGradientAxis> for AngleRadian
impl IntoVar<LinearGradientAxis> for AngleRadian
source§impl IntoVar<LinearGradientAxis> for AngleTurn
impl IntoVar<LinearGradientAxis> for AngleTurn
source§impl IntoVar<LinearGradientAxis> for Line
impl IntoVar<LinearGradientAxis> for Line
source§impl Layout2d for LinearGradientAxis
impl Layout2d for LinearGradientAxis
source§fn layout_dft(&self, default: Self::Px) -> Self::Px
fn layout_dft(&self, default: Self::Px) -> Self::Px
Compute the pixel value in the current
LAYOUT
context with default
.source§fn affect_mask(&self) -> LayoutMask
fn affect_mask(&self) -> LayoutMask
Compute a
LayoutMask
that flags all contextual values that affect the result of layout
.source§impl PartialEq for LinearGradientAxis
impl PartialEq for LinearGradientAxis
source§impl Serialize for LinearGradientAxis
impl Serialize for LinearGradientAxis
source§impl Transitionable for LinearGradientAxis
impl Transitionable for LinearGradientAxis
source§fn lerp(self, to: &Self, step: EasingStep) -> Self
fn lerp(self, to: &Self, step: EasingStep) -> Self
Linear interpolates for same axis kinds, or changes in one step between axis kinds.
impl IntoValue<LinearGradientAxis> for AngleDegree
impl IntoValue<LinearGradientAxis> for AngleGradian
impl IntoValue<LinearGradientAxis> for AngleRadian
impl IntoValue<LinearGradientAxis> for AngleTurn
impl IntoValue<LinearGradientAxis> for Line
impl StructuralPartialEq for LinearGradientAxis
Auto Trait Implementations§
impl Freeze for LinearGradientAxis
impl RefUnwindSafe for LinearGradientAxis
impl Send for LinearGradientAxis
impl Sync for LinearGradientAxis
impl Unpin for LinearGradientAxis
impl UnwindSafe for LinearGradientAxis
Blanket Implementations§
source§impl<T> AnyVarValue for Twhere
T: VarValue,
impl<T> AnyVarValue for Twhere
T: VarValue,
source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Access to mut
dyn Any
methods.source§fn clone_boxed(&self) -> Box<dyn AnyVarValue>
fn clone_boxed(&self) -> Box<dyn AnyVarValue>
Clone the value.
source§fn clone_boxed_var(&self) -> Box<dyn AnyVar>
fn clone_boxed_var(&self) -> Box<dyn AnyVar>
Clone the value into a new boxed
LocalVar<Self>
.source§fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
Gets if
self
equals other
.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more