Struct cushy::styles::Color

#[repr(C)]
pub struct Color(pub u32);
Expand description

A red, green, blue, and alpha color value stored in 32-bits.

Tuple Fields§

§0: u32

Implementations§

§

impl Color

pub const fn new(red: u8, green: u8, blue: u8, alpha: u8) -> Color

Returns a new color with the provided components.

pub fn new_f32(red: f32, green: f32, blue: f32, alpha: f32) -> Color

Returns a new color by converting each component from its 0.0..=1.0 range into a 0..=255 range.

pub const fn red(self) -> u8

Returns the red component of this color, range 0-255.

pub fn red_f32(self) -> f32

Returns the red component of this color, range 0.0-1.0.

pub const fn green(self) -> u8

Returns the green component of this color, range 0-255.

pub fn green_f32(self) -> f32

Returns the green component of this color, range 0.0-1.0.

pub const fn blue(self) -> u8

Returns the blue component of this color, range 0-255.

pub fn blue_f32(self) -> f32

Returns the blue component of this color, range 0.0-1.0.

pub const fn alpha(self) -> u8

Returns the alpha component of this color, range 0-255. A value of 255 is completely opaque.

pub fn alpha_f32(self) -> f32

Returns the alpha component of this color, range 0.0-1.0. A value of 1.0 is completely opaque.

pub const fn with_red(self, red: u8) -> Color

Returns a new color replacing this colors red channel with red.

pub const fn with_green(self, red: u8) -> Color

Returns a new color replacing this colors green channel with green.

pub const fn with_blue(self, blue: u8) -> Color

Returns a new color replacing this colors blue channel with blue.

pub const fn with_alpha(self, alpha: u8) -> Color

Returns a new color replacing this colors alpha channel with alpha.

pub fn with_red_f32(self, red: f32) -> Color

Returns a new color replacing this colors red channel with red.

pub fn with_green_f32(self, green: f32) -> Color

Returns a new color replacing this colors green channel with green.

pub fn with_blue_f32(self, blue: f32) -> Color

Returns a new color replacing this colors blue channel with blue.

pub fn with_alpha_f32(self, alpha: f32) -> Color

Returns a new color replacing this colors alpha channel with alpha.

§

impl Color

pub const ALICEBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const ANTIQUEWHITE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const AQUA: Color = _

Equivalent to the CSS color keywords of the same name.

pub const AQUAMARINE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const AZURE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const BEIGE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const BISQUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const BLACK: Color = _

Equivalent to the CSS color keywords of the same name.

pub const BLANCHEDALMOND: Color = _

Equivalent to the CSS color keywords of the same name.

pub const BLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const BLUEVIOLET: Color = _

Equivalent to the CSS color keywords of the same name.

pub const BROWN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const BURLYWOOD: Color = _

Equivalent to the CSS color keywords of the same name.

pub const CADETBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const CHARTREUSE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const CHOCOLATE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const CLEAR_BLACK: Color = _

Equivalent to the CSS color keywords of the same name.

pub const CLEAR_WHITE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const CORAL: Color = _

Equivalent to the CSS color keywords of the same name.

pub const CORNFLOWERBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const CORNSILK: Color = _

Equivalent to the CSS color keywords of the same name.

pub const CRIMSON: Color = _

Equivalent to the CSS color keywords of the same name.

pub const CYAN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKCYAN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKGOLDENROD: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKGREY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKKHAKI: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKMAGENTA: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKOLIVEGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKORANGE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKORCHID: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKRED: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKSALMON: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKSEAGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKSLATEBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKSLATEGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKSLATEGREY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKTURQUOISE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DARKVIOLET: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DEEPPINK: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DEEPSKYBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DIMGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DIMGREY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const DODGERBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const FIREBRICK: Color = _

Equivalent to the CSS color keywords of the same name.

pub const FLORALWHITE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const FORESTGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const FUCHSIA: Color = _

Equivalent to the CSS color keywords of the same name.

pub const GAINSBORO: Color = _

Equivalent to the CSS color keywords of the same name.

pub const GHOSTWHITE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const GOLD: Color = _

Equivalent to the CSS color keywords of the same name.

pub const GOLDENROD: Color = _

Equivalent to the CSS color keywords of the same name.

pub const GRAY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const GREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const GREENYELLOW: Color = _

Equivalent to the CSS color keywords of the same name.

pub const GREY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const HONEYDEW: Color = _

Equivalent to the CSS color keywords of the same name.

pub const HOTPINK: Color = _

Equivalent to the CSS color keywords of the same name.

pub const INDIANRED: Color = _

Equivalent to the CSS color keywords of the same name.

pub const INDIGO: Color = _

Equivalent to the CSS color keywords of the same name.

pub const IVORY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const KHAKI: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LAVENDER: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LAVENDERBLUSH: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LAWNGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LEMONCHIFFON: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTCORAL: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTCYAN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTGOLDENRODYELLOW: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTGREY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTPINK: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTSALMON: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTSEAGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTSKYBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTSLATEGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTSLATEGREY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTSTEELBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIGHTYELLOW: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIME: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LIMEGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const LINEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MAGENTA: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MAROON: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MEDIUMAQUAMARINE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MEDIUMBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MEDIUMORCHID: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MEDIUMPURPLE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MEDIUMSEAGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MEDIUMSLATEBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MEDIUMSPRINGGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MEDIUMTURQUOISE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MEDIUMVIOLETRED: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MIDNIGHTBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MINTCREAM: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MISTYROSE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const MOCCASIN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const NAVAJOWHITE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const NAVY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const OLDLACE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const OLIVE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const OLIVEDRAB: Color = _

Equivalent to the CSS color keywords of the same name.

pub const ORANGE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const ORANGERED: Color = _

Equivalent to the CSS color keywords of the same name.

pub const ORCHID: Color = _

Equivalent to the CSS color keywords of the same name.

pub const PALEGOLDENROD: Color = _

Equivalent to the CSS color keywords of the same name.

pub const PALEGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const PALETURQUOISE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const PALEVIOLETRED: Color = _

Equivalent to the CSS color keywords of the same name.

pub const PAPAYAWHIP: Color = _

Equivalent to the CSS color keywords of the same name.

pub const PEACHPUFF: Color = _

Equivalent to the CSS color keywords of the same name.

pub const PERU: Color = _

Equivalent to the CSS color keywords of the same name.

pub const PINK: Color = _

Equivalent to the CSS color keywords of the same name.

pub const PLUM: Color = _

Equivalent to the CSS color keywords of the same name.

pub const POWDERBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const PURPLE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const REBECCAPURPLE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const RED: Color = _

Equivalent to the CSS color keywords of the same name.

pub const ROSYBROWN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const ROYALBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SADDLEBROWN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SALMON: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SANDYBROWN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SEAGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SEASHELL: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SIENNA: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SILVER: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SKYBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SLATEBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SLATEGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SLATEGREY: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SNOW: Color = _

Equivalent to the CSS color keywords of the same name.

pub const SPRINGGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const STEELBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const TAN: Color = _

Equivalent to the CSS color keywords of the same name.

pub const TEAL: Color = _

Equivalent to the CSS color keywords of the same name.

pub const THISTLE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const TOMATO: Color = _

Equivalent to the CSS color keywords of the same name.

pub const TURQUOISE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const VIOLET: Color = _

Equivalent to the CSS color keywords of the same name.

pub const WHEAT: Color = _

Equivalent to the CSS color keywords of the same name.

pub const WHITE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const WHITESMOKE: Color = _

Equivalent to the CSS color keywords of the same name.

pub const YELLOW: Color = _

Equivalent to the CSS color keywords of the same name.

pub const YELLOWGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

Trait Implementations§

§

impl Clone for Color

§

fn clone(&self) -> Color

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 ColorExt for Color

source§

fn into_hsla(self) -> Hsla

Converts this color into its hue, saturation, and lightness components.
source§

fn contrast_between( self, check_source: ColorSource, check_lightness: ZeroToOne, check_alpha: ZeroToOne, ) -> ZeroToOne

Returns the contrast between this color and the components provided. Read more
source§

fn most_contrasting(self, others: &[Self]) -> Self
where Self: Copy,

Returns the color in others that contrasts the most from self.
source§

fn source(self) -> ColorSource

Returns the hue and saturation of this color.
source§

fn lightness(self) -> ZeroToOne

Returns the perceived lightness of this color.
§

impl Debug for Color

§

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

Formats the value using the given formatter. Read more
§

impl From<BackendColor> for Color

§

fn from(value: BackendColor) -> Color

Converts to this type from the input type.
§

impl From<Color> for Color

§

fn from(value: Color) -> Color

Converts to this type from the input type.
source§

impl From<Color> for Component

source§

fn from(value: Color) -> Self

Converts to this type from the input type.
source§

impl From<Color> for ContainerBackground

source§

fn from(value: Color) -> Self

Converts to this type from the input type.
source§

impl From<Color> for Hsl

source§

fn from(value: Color) -> Self

Converts to this type from the input type.
source§

impl From<Color> for Hsla

source§

fn from(value: Color) -> Self

Converts to this type from the input type.
source§

impl From<Hsl> for Color

source§

fn from(value: Hsl) -> Self

Converts to this type from the input type.
source§

impl From<Hsla> for Color

source§

fn from(value: Hsla) -> Self

Converts to this type from the input type.
§

impl Hash for Color

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl LinearInterpolate for Color

source§

fn lerp(&self, target: &Self, percent: f32) -> Self

Interpolate linearly between self and target using percent.
source§

impl MakeWidgetWithTag for Color

source§

fn make_with_tag(self, id: WidgetTag) -> WidgetInstance

Returns a new WidgetInstance whose WidgetId comes from tag.
§

impl PartialEq for Color

§

fn eq(&self, other: &Color) -> 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 PercentBetween for Color

source§

fn percent_between(&self, min: &Self, max: &Self) -> ZeroToOne

Return the percentage that self is between min and max.
source§

impl RequireInvalidation for Color

source§

fn requires_invalidation(&self) -> bool

Cushy tracks two different states: Read more
source§

impl TryFrom<Component> for Color

§

type Error = Component

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

fn try_from(value: Component) -> Result<Self, Self::Error>

Performs the conversion.
§

impl Zeroable for Color

§

fn zeroed() -> Self

§

impl Copy for Color

§

impl Eq for Color

§

impl Pod for Color

§

impl StructuralPartialEq for Color

Auto Trait Implementations§

§

impl Freeze for Color

§

impl RefUnwindSafe for Color

§

impl Send for Color

§

impl Sync for Color

§

impl Unpin for Color

§

impl UnwindSafe for Color

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Real + Zero + Arithmetics + Clone, Swp: WhitePoint<T>, Dwp: WhitePoint<T>, D: AdaptFrom<S, Swp, Dwp, T>,

source§

fn adapt_into_using<M>(self, method: M) -> D
where M: TransformMatrix<T>,

Convert the source color to the destination color using the specified method.
source§

fn adapt_into(self) -> D

Convert the source color to the destination color using the bradford method by default.
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, C> ArraysFrom<C> for T
where C: IntoArrays<T>,

source§

fn arrays_from(colors: C) -> T

Cast a collection of colors into a collection of arrays.
source§

impl<T, C> ArraysInto<C> for T
where C: FromArrays<T>,

source§

fn arrays_into(self) -> C

Cast this collection of arrays into a collection of colors.
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<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for U
where T: FromCam16Unclamped<WpParam, U>,

§

type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar

The number type that’s used in parameters when converting.
source§

fn cam16_into_unclamped( self, parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar>, ) -> T

Converts self into C, using the provided parameters.
§

impl<A> Cast for A

§

fn cast<To>(self) -> To
where To: CastFrom<A>,

Casts self to the To type. This may be a lossy operation.
§

impl<A> CastFrom<A> for A

§

fn from_cast(from: A) -> A

Returns from as Self.
§

impl<A, B> CastInto<A> for B
where A: CastFrom<B>,

§

fn cast_into(self) -> A

Returns self as To.
§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

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

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> ComponentType for T

source§

fn into_component(self) -> Component

Returns this type, wrapped in a Component.
source§

fn try_from_component(component: Component) -> Result<T, Component>

Attempts to extract this type from component. If component does not contain this type, Err(component) is returned.
source§

impl<T, C> ComponentsFrom<C> for T
where C: IntoComponents<T>,

source§

fn components_from(colors: C) -> T

Cast a collection of colors into a collection of color components.
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<T> Downcast for T
where T: Any,

§

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

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

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

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

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

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromAngle<T> for T

source§

fn from_angle(angle: T) -> T

Performs a conversion from angle.
source§

impl<T, U> FromStimulus<U> for T
where U: IntoStimulus<T>,

source§

fn from_stimulus(other: U) -> T

Converts other into Self, while performing the appropriate scaling, rounding and clamping.
§

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, U> IntoAngle<U> for T
where U: FromAngle<T>,

source§

fn into_angle(self) -> U

Performs a conversion into T.
source§

impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for U
where T: Cam16FromUnclamped<WpParam, U>,

§

type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar

The number type that’s used in parameters when converting.
source§

fn into_cam16_unclamped( self, parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar>, ) -> T

Converts self into C, using the provided parameters.
source§

impl<T, U> IntoColor<U> for T
where U: FromColor<T>,

source§

fn into_color(self) -> U

Convert into T with values clamped to the color defined bounds Read more
source§

impl<T, U> IntoColorUnclamped<U> for T
where U: FromColorUnclamped<T>,

source§

fn into_color_unclamped(self) -> U

Convert into T. The resulting color might be invalid in its color space Read more
source§

impl<T> IntoComponentValue for T
where T: Into<Component>,

source§

fn into_component_value(self) -> Value<Component>

Returns self stored in a component value.
§

impl<Unit> IntoComponents<Unit> for Unit
where Unit: Copy,

§

fn into_components(self) -> (Unit, Unit)

Extracts this type’s 2d vector components.
§

fn to_vec<Type>(self) -> Type
where Type: FromComponents<Unit>,

Converts this type to another type using [FromComponents] and [IntoComponents].
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> IntoReadOnly<T> for T

source§

fn into_read_only(self) -> ReadOnly<T>

Returns self as a ReadOnly.
source§

impl<T> IntoStimulus<T> for T

source§

fn into_stimulus(self) -> T

Converts self into T, while performing the appropriate scaling, rounding and clamping.
source§

impl<T> IntoStoredComponent for T

source§

fn into_stored_component(self) -> StoredComponent

Returns this value as a stored component.
source§

impl<T> IntoValue<Option<T>> for T

source§

fn into_value(self) -> Value<Option<T>>

Returns this type as a Value.
source§

impl<T> IntoValue<T> for T

source§

fn into_value(self) -> Value<T>

Returns this type as a Value.
source§

impl<T> MakeWidget for T

source§

fn make_widget(self) -> WidgetInstance

Returns a new widget.
source§

fn into_window(self) -> Window

Returns a new window containing self as the root widget.
source§

fn build_standalone_window(self) -> StandaloneWindowBuilder

Returns a builder for a standalone window. Read more
source§

fn build_recorder(self) -> VirtualRecorderBuilder<Rgb8>

Returns a builder for a VirtualRecorder
source§

fn with_styles(self, styles: impl IntoValue<Styles>) -> Style
where Self: Sized,

Associates styles with this widget. Read more
source§

fn with<C: ComponentDefinition>( self, name: &C, component: impl IntoValue<C::ComponentType>, ) -> Style

Associates a style component with self.
source§

fn with_dynamic<C: ComponentDefinition>( self, name: &C, dynamic: impl IntoDynamicComponentValue, ) -> Style

Associates a style component with self, resolving its value using dynamic at runtime.
source§

fn with_shortcut<F>( self, key: impl Into<ShortcutKey>, modifiers: ModifiersState, callback: F, ) -> Shortcuts
where F: FnMut(KeyEvent) -> EventHandling + Send + 'static,

Invokes callback when key is pressed while modifiers are pressed. Read more
source§

fn with_repeating_shortcut<F>( self, key: impl Into<ShortcutKey>, modifiers: ModifiersState, callback: F, ) -> Shortcuts
where F: FnMut(KeyEvent) -> EventHandling + Send + 'static,

Invokes callback when key is pressed while modifiers are pressed. If the shortcut is held, the callback will be invoked on repeat events. Read more
source§

fn h1(self) -> Style

Styles self with the largest of 6 heading styles.
source§

fn h2(self) -> Style

Styles self with the second largest of 6 heading styles.
source§

fn h3(self) -> Style

Styles self with the third largest of 6 heading styles.
source§

fn h4(self) -> Style

Styles self with the third smallest of 6 heading styles.
source§

fn h5(self) -> Style

Styles self with the second smallest of 6 heading styles.
source§

fn h6(self) -> Style

Styles self with the smallest of 6 heading styles.
source§

fn xxxx_large(self) -> Style

Styles self with the largest text size.
source§

fn xxx_large(self) -> Style

Styles self with the second largest text size.
source§

fn xx_large(self) -> Style

Styles self with the third largest text size.
source§

fn x_large(self) -> Style

Styles self with the fourth largest text size.
source§

fn large(self) -> Style

Styles self with the fifth largest text size.
source§

fn default_size(self) -> Style

Styles self with the third smallest text size.
source§

fn small(self) -> Style

Styles self with the second smallest text size.
source§

fn x_small(self) -> Style

Styles self with the smallest text size.
source§

fn with_next_focus( self, next_focus: impl IntoValue<Option<WidgetId>>, ) -> WidgetInstance

Sets the widget that should be focused next. Read more
source§

fn with_enabled(self, enabled: impl IntoValue<bool>) -> WidgetInstance

Sets this widget to be enabled/disabled based on enabled and returns self. Read more
source§

fn into_default(self) -> WidgetInstance

Sets this widget as a “default” widget. Read more
source§

fn into_escape(self) -> WidgetInstance

Sets this widget as an “escape” widget. Read more
source§

fn and(self, other: impl MakeWidget) -> WidgetList

Returns a collection of widgets using self and other.
source§

fn chain<W: MakeWidget>(self, others: impl IntoIterator<Item = W>) -> WidgetList

Chains self and others into a WidgetList.
source§

fn expand(self) -> Expand

Expands self to grow to fill its parent.
source§

fn expand_weighted(self, weight: u8) -> Expand

Expands self to grow to fill its parent proportionally with other weighted siblings.
source§

fn expand_horizontally(self) -> Expand

Expands self to grow to fill its parent horizontally.
source§

fn expand_vertically(self) -> Expand

Expands self to grow to fill its parent vertically.
source§

fn size<T>(self, size: Size<T>) -> Resize
where T: Into<DimensionRange>,

Resizes self to size.
source§

fn width(self, width: impl Into<DimensionRange>) -> Resize

Resizes self to width. Read more
source§

fn height(self, height: impl Into<DimensionRange>) -> Resize

Resizes self to height. Read more
source§

fn into_button(self) -> Button

Returns this widget as the contents of a clickable button.
source§

fn to_button(&self) -> Button
where Self: Clone,

Returns this widget as the contents of a clickable button.
source§

fn into_checkbox(self, value: impl IntoDynamic<CheckboxState>) -> Checkbox

Returns this widget as the label of a Checkbox.
source§

fn to_checkbox(&self, value: impl IntoDynamic<CheckboxState>) -> Checkbox
where Self: Clone,

Returns this widget as the label of a Checkbox.
source§

fn centered(self) -> Align

Aligns self to the center vertically and horizontally.
source§

fn align_left(self) -> Align

Aligns self to the left.
source§

fn align_right(self) -> Align

Aligns self to the right.
source§

fn align_top(self) -> Align

Aligns self to the top.
source§

fn align_bottom(self) -> Align

Aligns self to the bottom.
source§

fn fit_horizontally(self) -> Align

Fits self horizontally within its parent.
source§

fn fit_vertically(self) -> Align

Fits self vertically within its parent.
source§

fn scroll(self) -> Scroll

Allows scrolling self both vertically and horizontally.
source§

fn vertical_scroll(self) -> Scroll

Allows scrolling self vertically.
source§

fn horizontal_scroll(self) -> Scroll

Allows scrolling self horizontally.
source§

fn widget_ref(self) -> WidgetRef

Creates a WidgetRef for use as child widget.
source§

fn contain(self) -> Container

Wraps self in a Container.
source§

fn contain_level(self, level: impl IntoValue<ContainerLevel>) -> Container

Wraps self in a Container with the specified level.
source§

fn background_color(self, color: impl IntoValue<Color>) -> Container

Returns a new widget that renders color behind self.
source§

fn pad(self) -> Container

Wraps self with the default padding.
source§

fn pad_by(self, padding: impl IntoValue<Edges<Dimension>>) -> Container

Wraps self with the specified padding.
source§

fn themed(self, theme: impl IntoValue<ThemePair>) -> Themed

Applies theme to self and its children.
source§

fn themed_mode(self, mode: impl IntoValue<ThemeMode>) -> ThemedMode

Applies mode to self and its children.
source§

fn collapse_horizontally( self, collapse_when: impl IntoDynamic<bool>, ) -> Collapse

Returns a widget that collapses self horizontally based on the dynamic boolean value. Read more
source§

fn collapse_vertically(self, collapse_when: impl IntoDynamic<bool>) -> Collapse

Returns a widget that collapses self vertically based on the dynamic boolean value. Read more
source§

fn disclose(self) -> Disclose

Returns a new widget that allows hiding and showing contents.
source§

fn validation(self, validation: impl IntoDynamic<Validation>) -> Validated

Returns a widget that shows validation errors and/or hints.
source§

fn tooltip(self, layer: &OverlayLayer, tip: impl MakeWidget) -> Tooltipped

Returns a widget that shows tip on layer when self is hovered.
source§

impl<T> MakeWindow for T
where T: MakeWidget,

§

type Behavior = WidgetInstance

The behavior associated with this window.
source§

fn make_window(self) -> Window<<T as MakeWindow>::Behavior>

Returns a new window from self.
source§

fn open_centered<App>(self, app: &mut App) -> Result<WindowHandle>
where Self: Sized, App: Application + ?Sized,

Opens self in the center of the monitor the window initially appears on.
source§

fn run_centered(self) -> Result
where Self: Sized,

Runs self in the center of the monitor the window initially appears on.
source§

fn run_centered_in(self, app: PendingApp) -> Result
where Self: Sized,

Runs app after opening self in the center of the monitor the window initially appears on.
source§

impl<T> Open for T
where T: MakeWindow,

source§

fn open<App>(self, app: &mut App) -> Result<WindowHandle, EventLoopError>
where App: Application + ?Sized,

Opens the provided type as a window inside of app.
source§

fn run_in(self, app: PendingApp) -> Result<(), EventLoopError>

Runs the provided type inside of the pending app, returning Ok(()) upon successful execution and program exit. Note that this function may not ever return on some platforms.
§

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> Run for T
where T: MakeWidget,

source§

fn run(self) -> Result<(), EventLoopError>

Runs the provided type, returning Ok(()) upon successful execution and program exit. Note that this function may not ever return on some platforms.
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, C> TryComponentsInto<C> for T
where C: TryFromComponents<T>,

§

type Error = <C as TryFromComponents<T>>::Error

The error for when try_into_colors fails to cast.
source§

fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>

Try to cast this collection of color components into a collection of colors. 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.
source§

impl<T, U> TryIntoColor<U> for T
where U: TryFromColor<T>,

source§

fn try_into_color(self) -> Result<U, OutOfBounds<U>>

Convert into T, returning ok if the color is inside of its defined range, otherwise an OutOfBounds error is returned which contains the unclamped color. Read more
source§

impl<C, U> UintsFrom<C> for U
where C: IntoUints<U>,

source§

fn uints_from(colors: C) -> U

Cast a collection of colors into a collection of unsigned integers.
source§

impl<C, U> UintsInto<C> for U
where C: FromUints<U>,

source§

fn uints_into(self) -> C

Cast this collection of unsigned integers into a collection of colors.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

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
§

impl<T> AnyBitPattern for T
where T: Pod,

§

impl<T> NoUninit for T
where T: Pod,

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSendSync for T
where T: WasmNotSend + WasmNotSync,

§

impl<T> WasmNotSync for T
where T: Sync,