Struct chrome_remote_interface_model::dom::Rgba[][src]

pub struct Rgba { /* fields omitted */ }
This is supported on crate features DOM and Runtime only.

A structure holding an RGBA color.

Implementations

impl Rgba[src]

pub fn builder() -> RgbaBuilder[src]

pub fn r(&self) -> u32[src]

The red component, in the [0-255] range.

pub fn g(&self) -> u32[src]

The green component, in the [0-255] range.

pub fn b(&self) -> u32[src]

The blue component, in the [0-255] range.

pub fn a(&self) -> Option<&f64>[src]

The alpha component, in the [0-1] range (default: 1).

Trait Implementations

impl Clone for Rgba[src]

impl Debug for Rgba[src]

impl<'de> Deserialize<'de> for Rgba[src]

impl Serialize for Rgba[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.