Struct cushy::styles::Color

source ·
#[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§

source§

impl Color

source

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

Returns a new color with the provided components.

source

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.

source

pub const fn red(self) -> u8

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

source

pub fn red_f32(self) -> f32

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

source

pub const fn green(self) -> u8

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

source

pub fn green_f32(self) -> f32

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

source

pub const fn blue(self) -> u8

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

source

pub fn blue_f32(self) -> f32

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

source

pub const fn alpha(self) -> u8

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

source

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.

source

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

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

source

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

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

source

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

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

source

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

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

source

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

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

source

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

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

source

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

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

source

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

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

source§

impl Color

source

pub const ALICEBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const ANTIQUEWHITE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const AQUA: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const AQUAMARINE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const AZURE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const BEIGE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const BISQUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const BLACK: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const BLANCHEDALMOND: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const BLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const BLUEVIOLET: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const BROWN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const BURLYWOOD: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const CADETBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const CHARTREUSE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const CHOCOLATE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const CLEAR_BLACK: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const CLEAR_WHITE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const CORAL: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const CORNFLOWERBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const CORNSILK: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const CRIMSON: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const CYAN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKCYAN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKGOLDENROD: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKGREY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKKHAKI: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKMAGENTA: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKOLIVEGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKORANGE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKORCHID: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKRED: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKSALMON: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKSEAGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKSLATEBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKSLATEGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKSLATEGREY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKTURQUOISE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DARKVIOLET: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DEEPPINK: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DEEPSKYBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DIMGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DIMGREY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const DODGERBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const FIREBRICK: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const FLORALWHITE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const FORESTGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const FUCHSIA: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const GAINSBORO: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const GHOSTWHITE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const GOLD: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const GOLDENROD: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const GRAY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const GREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const GREENYELLOW: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const GREY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const HONEYDEW: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const HOTPINK: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const INDIANRED: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const INDIGO: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const IVORY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const KHAKI: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LAVENDER: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LAVENDERBLUSH: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LAWNGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LEMONCHIFFON: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTCORAL: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTCYAN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTGOLDENRODYELLOW: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTGREY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTPINK: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTSALMON: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTSEAGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTSKYBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTSLATEGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTSLATEGREY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTSTEELBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIGHTYELLOW: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIME: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LIMEGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const LINEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MAGENTA: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MAROON: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MEDIUMAQUAMARINE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MEDIUMBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MEDIUMORCHID: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MEDIUMPURPLE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MEDIUMSEAGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MEDIUMSLATEBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MEDIUMSPRINGGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MEDIUMTURQUOISE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MEDIUMVIOLETRED: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MIDNIGHTBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MINTCREAM: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MISTYROSE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const MOCCASIN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const NAVAJOWHITE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const NAVY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const OLDLACE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const OLIVE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const OLIVEDRAB: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const ORANGE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const ORANGERED: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const ORCHID: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const PALEGOLDENROD: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const PALEGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const PALETURQUOISE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const PALEVIOLETRED: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const PAPAYAWHIP: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const PEACHPUFF: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const PERU: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const PINK: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const PLUM: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const POWDERBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const PURPLE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const REBECCAPURPLE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const RED: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const ROSYBROWN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const ROYALBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SADDLEBROWN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SALMON: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SANDYBROWN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SEAGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SEASHELL: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SIENNA: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SILVER: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SKYBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SLATEBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SLATEGRAY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SLATEGREY: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SNOW: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const SPRINGGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const STEELBLUE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const TAN: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const TEAL: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const THISTLE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const TOMATO: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const TURQUOISE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const VIOLET: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const WHEAT: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const WHITE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const WHITESMOKE: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const YELLOW: Color = _

Equivalent to the CSS color keywords of the same name.

source

pub const YELLOWGREEN: Color = _

Equivalent to the CSS color keywords of the same name.

Trait Implementations§

source§

impl Clone for Color

source§

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

impl Debug for Color

source§

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

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

impl From<Color> for Color

source§

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

impl Hash for Color

source§

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

impl PartialEq for Color

source§

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

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

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

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

impl Zeroable for Color

source§

fn zeroed() -> Self

source§

impl Copy for Color

source§

impl Eq for Color

source§

impl Pod for Color

source§

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

impl<A> Cast for A

source§

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

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

impl<A> CastFrom<A> for A

source§

fn from_cast(from: A) -> A

Returns from as Self.
source§

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

source§

fn cast_into(self) -> A

Returns self as To.
source§

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

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: Clone,

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

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

source§

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

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

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

source§

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

impl<T> Instrument for T

source§

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

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

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

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

source§

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

Extracts this type’s 2d vector components.
source§

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<WidgetInstance>

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 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 into_checkbox(self, value: impl IntoDynamic<CheckboxState>) -> Checkbox

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

source§

fn open<App>( self, app: &mut App, ) -> Result<Option<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.
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

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

Initializes a with the given initializer. Read more
source§

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

Dereferences the given pointer. Read more
source§

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

Mutably dereferences the given pointer. Read more
source§

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

impl<T> WithSubscriber for T

source§

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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

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

source§

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

source§

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

source§

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

source§

impl<T> WasmNotSendSync for T

source§

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