Struct cssparser::RGBA
[−]
[src]
pub struct RGBA { pub red: u8, pub green: u8, pub blue: u8, pub alpha: u8, }
A color with red, green, blue, and alpha components, in a byte each.
Fields
red: u8
The red component.
green: u8
The green component.
blue: u8
The blue component.
alpha: u8
The alpha component.
Methods
impl RGBA
[src]
pub fn from_floats(red: f32, green: f32, blue: f32, alpha: f32) -> Self
[src]
Constructs a new RGBA value from float components. It expects the red, green, blue and alpha channels in that order, and all values will be clamped to the 0.0 ... 1.0 range.
pub fn transparent() -> Self
[src]
Returns a transparent color.
pub fn new(red: u8, green: u8, blue: u8, alpha: u8) -> Self
[src]
Same thing, but with u8
values instead of floats in the 0 to 1 range.
pub fn red_f32(&self) -> f32
[src]
Returns the red channel in a floating point number form, from 0 to 1.
pub fn green_f32(&self) -> f32
[src]
Returns the green channel in a floating point number form, from 0 to 1.
pub fn blue_f32(&self) -> f32
[src]
Returns the blue channel in a floating point number form, from 0 to 1.
pub fn alpha_f32(&self) -> f32
[src]
Returns the alpha channel in a floating point number form, from 0 to 1.
Trait Implementations
impl Clone for RGBA
[src]
fn clone(&self) -> RGBA
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Copy for RGBA
[src]
impl PartialEq for RGBA
[src]
fn eq(&self, __arg_0: &RGBA) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &RGBA) -> bool
[src]
This method tests for !=
.
impl Debug for RGBA
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Serialize for RGBA
[src]
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
S: Serializer,
[src]
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<'de> Deserialize<'de> for RGBA
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more