Struct zng_color::gradient::GradientRadius

source ·
pub struct GradientRadius {
    pub base: GradientRadiusBase,
    pub circle: bool,
    pub radii: Size,
}
Expand description

The radial gradient radius length in both dimensions.

Fields§

§base: GradientRadiusBase

How the base length is calculated. The base length is the 100.pct() length.

§circle: bool

If the gradient is circular or elliptical.

If true the radius is the same in both dimensions, if false the radius can be different.

§radii: Size

The length of the rendered gradient stops.

Implementations§

source§

impl GradientRadius

source

pub fn closest_side(radius: impl Into<Size>) -> Self

Ellipse radii relative from center to the closest edge.

source

pub fn closest_corner(radius: impl Into<Size>) -> Self

Ellipse radii relative from center to the closest corner.

source

pub fn farthest_side(radius: impl Into<Size>) -> Self

Ellipse radii relative from center to the farthest edge.

source

pub fn farthest_corner(radius: impl Into<Size>) -> Self

Ellipse radii relative from center to the farthest corner.

source

pub fn circle(self) -> Self

Enable circular radius.

source

pub fn layout(&self, center: PxPoint) -> PxSize

Compute the radius in the current LAYOUT context.

Trait Implementations§

source§

impl Clone for GradientRadius

source§

fn clone(&self) -> GradientRadius

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GradientRadius

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for GradientRadius

source§

fn default() -> Self

farthest_corner(100.pct())

source§

impl<'de> Deserialize<'de> for GradientRadius

source§

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<B: Into<GradientRadiusBase>, R: Into<Length>> From<(B, R)> for GradientRadius

source§

fn from((base, radius): (B, R)) -> Self

Ellipse GradientRadiusBase and ellipse radius.

source§

impl From<Dip> for GradientRadius

source§

fn from(l: Dip) -> Self

Conversion to Length::Dip and to radius.

source§

impl From<Factor> for GradientRadius

source§

fn from(norm: Factor) -> Self

Conversion to Length::Factor and to radius.

source§

impl From<FactorPercent> for GradientRadius

source§

fn from(percent: FactorPercent) -> Self

Conversion to Length::Factor and to radius.

source§

impl From<GradientRadiusBase> for GradientRadius

source§

fn from(base: GradientRadiusBase) -> Self

Ellipse fill the base radius.

source§

impl From<Length> for GradientRadius

source§

impl From<Px> for GradientRadius

source§

fn from(l: Px) -> Self

Conversion to Length::Px and to radius.

source§

impl From<Size> for GradientRadius

source§

impl From<f32> for GradientRadius

source§

fn from(f: f32) -> Self

Conversion to Length::DipF32 and to radius.

source§

impl From<i32> for GradientRadius

source§

fn from(i: i32) -> Self

Conversion to Length::Dip and to radius.

source§

impl<B: Into<GradientRadiusBase>, R: Into<Length>> IntoVar<GradientRadius> for (B, R)

source§

fn into_var(self) -> Self::Var

Ellipse GradientRadiusBase and ellipse radius.

§

type Var = LocalVar<GradientRadius>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<GradientRadius> for Dip

source§

fn into_var(self) -> Self::Var

Conversion to Length::Dip and to radius.

§

type Var = LocalVar<GradientRadius>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<GradientRadius> for Factor

source§

fn into_var(self) -> Self::Var

Conversion to Length::Factor and to radius.

§

type Var = LocalVar<GradientRadius>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<GradientRadius> for FactorPercent

source§

fn into_var(self) -> Self::Var

Conversion to Length::Factor and to radius.

§

type Var = LocalVar<GradientRadius>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<GradientRadius> for GradientRadiusBase

source§

fn into_var(self) -> Self::Var

Ellipse fill the base radius.

§

type Var = LocalVar<GradientRadius>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<GradientRadius> for Length

source§

fn into_var(self) -> Self::Var

§

type Var = LocalVar<GradientRadius>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<GradientRadius> for Px

source§

fn into_var(self) -> Self::Var

Conversion to Length::Px and to radius.

§

type Var = LocalVar<GradientRadius>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<GradientRadius> for Size

source§

fn into_var(self) -> Self::Var

§

type Var = LocalVar<GradientRadius>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<GradientRadius> for f32

source§

fn into_var(self) -> Self::Var

Conversion to Length::DipF32 and to radius.

§

type Var = LocalVar<GradientRadius>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<GradientRadius> for i32

source§

fn into_var(self) -> Self::Var

Conversion to Length::Dip and to radius.

§

type Var = LocalVar<GradientRadius>

Variable type that will wrap the T value. Read more
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl PartialEq for GradientRadius

source§

fn eq(&self, other: &GradientRadius) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for GradientRadius

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<B: Into<GradientRadiusBase>, R: Into<Length>> IntoValue<GradientRadius> for (B, R)

source§

impl IntoValue<GradientRadius> for Dip

source§

impl IntoValue<GradientRadius> for Factor

source§

impl IntoValue<GradientRadius> for FactorPercent

source§

impl IntoValue<GradientRadius> for GradientRadiusBase

source§

impl IntoValue<GradientRadius> for Length

source§

impl IntoValue<GradientRadius> for Px

source§

impl IntoValue<GradientRadius> for Size

source§

impl IntoValue<GradientRadius> for f32

source§

impl IntoValue<GradientRadius> for i32

source§

impl StructuralPartialEq for GradientRadius

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AnyVarValue for T
where T: VarValue,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access to dyn Any methods.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Access to mut dyn Any methods.
source§

fn clone_boxed(&self) -> Box<dyn AnyVarValue>

Clone the value.
source§

fn clone_boxed_var(&self) -> Box<dyn AnyVar>

Clone the value into a new boxed LocalVar<Self>.
source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Access to Box<dyn Any> methods.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> IntoVar<T> for T
where T: VarValue,

§

type Var = LocalVar<T>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <T as IntoVar<T>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> IntoValue<T> for T
where T: VarValue,

source§

impl<T> VarValue for T
where T: Debug + Clone + PartialEq + Any + Send + Sync,