pub struct SRGB {
pub r: f32,
pub g: f32,
pub b: f32,
pub alpha: f32,
}Expand description
A color in the sRGB color space.
Fields§
§r: f32The red component.
g: f32The green component.
b: f32The blue component.
alpha: f32The alpha component.
Trait Implementations§
Source§impl ColorGamut for SRGB
impl ColorGamut for SRGB
Source§impl ColorSpace for SRGB
impl ColorSpace for SRGB
Source§fn channels(&self) -> (&'static str, &'static str, &'static str)
fn channels(&self) -> (&'static str, &'static str, &'static str)
Returns the channel names for this color space.
Source§fn types(&self) -> (ChannelType, ChannelType, ChannelType)
fn types(&self) -> (ChannelType, ChannelType, ChannelType)
Returns the channel types for this color space.
Source§fn resolve_missing(&self) -> Self
fn resolve_missing(&self) -> Self
Resolves missing color components (e.g.
none keywords) in the color.Source§impl<'de> Deserialize<'de> for SRGB
impl<'de> Deserialize<'de> for SRGB
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<FloatColor> for SRGB
impl From<FloatColor> for SRGB
Source§fn from(color: FloatColor) -> SRGB
fn from(color: FloatColor) -> SRGB
Converts to this type from the input type.
Source§impl From<PredefinedColor> for SRGB
impl From<PredefinedColor> for SRGB
Source§fn from(color: PredefinedColor) -> SRGB
fn from(color: PredefinedColor) -> SRGB
Converts to this type from the input type.
Source§impl From<SRGB> for SRGBLinear
impl From<SRGB> for SRGBLinear
Source§fn from(rgb: SRGB) -> SRGBLinear
fn from(rgb: SRGB) -> SRGBLinear
Converts to this type from the input type.
Source§impl From<SRGBLinear> for SRGB
impl From<SRGBLinear> for SRGB
Source§fn from(rgb: SRGBLinear) -> SRGB
fn from(rgb: SRGBLinear) -> SRGB
Converts to this type from the input type.
Source§impl Interpolate for SRGB
impl Interpolate for SRGB
Source§fn premultiply(&mut self)
fn premultiply(&mut self)
Premultiplies the color by its alpha value.
Source§fn unpremultiply(&mut self, alpha_multiplier: f32)
fn unpremultiply(&mut self, alpha_multiplier: f32)
Un-premultiplies the color by the given alpha multiplier.
Source§fn fill_missing_components(&mut self, other: &Self)
fn fill_missing_components(&mut self, other: &Self)
Fills missing components (represented as NaN) to match the other color to interpolate with.
Source§fn interpolate(&self, p1: f32, other: &Self, p2: f32) -> Self
fn interpolate(&self, p1: f32, other: &Self, p2: f32) -> Self
Interpolates the color with another using the given amounts of each.
Source§fn adjust_powerless_components(&mut self)
fn adjust_powerless_components(&mut self)
Adjusts components that are powerless to be NaN.
Source§fn adjust_hue(&mut self, _: &mut Self, _: HueInterpolationMethod)
fn adjust_hue(&mut self, _: &mut Self, _: HueInterpolationMethod)
Adjusts the color hue according to the given hue interpolation method.
Source§impl JsonSchema for SRGB
impl JsonSchema for SRGB
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl<'i, __T: Visit<'i, __T, __V>, __V: ?Sized + Visitor<'i, __T>> Visit<'i, __T, __V> for SRGB
impl<'i, __T: Visit<'i, __T, __V>, __V: ?Sized + Visitor<'i, __T>> Visit<'i, __T, __V> for SRGB
Source§const CHILD_TYPES: VisitTypes
const CHILD_TYPES: VisitTypes
Available on crate feature
visitor only.The types of values contained within this value and its children.
This is used to skip branches that don’t have any values requested
by the Visitor.
impl Copy for SRGB
impl StructuralPartialEq for SRGB
Auto Trait Implementations§
impl Freeze for SRGB
impl RefUnwindSafe for SRGB
impl Send for SRGB
impl Sync for SRGB
impl Unpin for SRGB
impl UnwindSafe for SRGB
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
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