Struct zng_wgt_fill::node::GradientBuilder
source · pub struct GradientBuilder<S> { /* private fields */ }
Expand description
Gradient builder start.
Use gradient
to start building.
Implementations§
source§impl<S> GradientBuilder<S>where
S: Var<GradientStops>,
impl<S> GradientBuilder<S>where
S: Var<GradientStops>,
sourcepub fn linear<A>(
self,
axis: A,
) -> LinearGradient<S, A::Var, LocalVar<ExtendMode>>where
A: IntoVar<LinearGradientAxis>,
pub fn linear<A>(
self,
axis: A,
) -> LinearGradient<S, A::Var, LocalVar<ExtendMode>>where
A: IntoVar<LinearGradientAxis>,
Builds a linear gradient.
Returns a node that fills the available space with the gradient, the node type doubles as a builder that can continue building a linear gradient.
sourcepub fn radial<C, R>(
self,
center: C,
radius: R,
) -> RadialGradient<S, C::Var, R::Var, LocalVar<ExtendMode>>
pub fn radial<C, R>( self, center: C, radius: R, ) -> RadialGradient<S, C::Var, R::Var, LocalVar<ExtendMode>>
Builds a radial gradient.
Returns a node that fills the available space with the gradient, the node type doubles as a builder that can continue building a radial gradient.
sourcepub fn conic<C: IntoVar<Point>, A: IntoVar<AngleRadian>>(
self,
center: C,
angle: A,
) -> ConicGradient<S, C::Var, A::Var, LocalVar<ExtendMode>>
pub fn conic<C: IntoVar<Point>, A: IntoVar<AngleRadian>>( self, center: C, angle: A, ) -> ConicGradient<S, C::Var, A::Var, LocalVar<ExtendMode>>
Builds a conic gradient.
Returns a node that fills the available space with the gradient, the node type doubles as a builder that can continue building a conic gradient.
Auto Trait Implementations§
impl<S> Freeze for GradientBuilder<S>where
S: Freeze,
impl<S> RefUnwindSafe for GradientBuilder<S>where
S: RefUnwindSafe,
impl<S> Send for GradientBuilder<S>where
S: Send,
impl<S> Sync for GradientBuilder<S>where
S: Sync,
impl<S> Unpin for GradientBuilder<S>where
S: Unpin,
impl<S> UnwindSafe for GradientBuilder<S>where
S: UnwindSafe,
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
§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