pub struct A98 {
pub r: f32,
pub g: f32,
pub b: f32,
pub alpha: f32,
}
Expand description
A color in the a98-rgb
color space.
Fields§
§r: f32
The red component.
g: f32
The green component.
b: f32
The blue component.
alpha: f32
The alpha component.
Trait Implementations§
Source§impl ColorGamut for A98
impl ColorGamut for A98
Source§impl ColorSpace for A98
impl ColorSpace for A98
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 A98
impl<'de> Deserialize<'de> for A98
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<A98> for PredefinedColor
impl From<A98> for PredefinedColor
Source§fn from(color: A98) -> PredefinedColor
fn from(color: A98) -> PredefinedColor
Converts to this type from the input type.
Source§impl From<A98> for SRGBLinear
impl From<A98> for SRGBLinear
Source§fn from(t: A98) -> SRGBLinear
fn from(t: A98) -> SRGBLinear
Converts to this type from the input type.
Source§impl From<FloatColor> for A98
impl From<FloatColor> for A98
Source§fn from(color: FloatColor) -> A98
fn from(color: FloatColor) -> A98
Converts to this type from the input type.
Source§impl From<PredefinedColor> for A98
impl From<PredefinedColor> for A98
Source§fn from(color: PredefinedColor) -> A98
fn from(color: PredefinedColor) -> A98
Converts to this type from the input type.
Source§impl From<SRGBLinear> for A98
impl From<SRGBLinear> for A98
Source§fn from(t: SRGBLinear) -> A98
fn from(t: SRGBLinear) -> A98
Converts to this type from the input type.
Source§impl JsonSchema for A98
impl JsonSchema for A98
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 A98
impl<'i, __T: Visit<'i, __T, __V>, __V: ?Sized + Visitor<'i, __T>> Visit<'i, __T, __V> for A98
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 A98
impl StructuralPartialEq for A98
Auto Trait Implementations§
impl Freeze for A98
impl RefUnwindSafe for A98
impl Send for A98
impl Sync for A98
impl Unpin for A98
impl UnwindSafe for A98
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