Struct usvg::Color[][src]

pub struct Color {
    pub red: u8,
    pub green: u8,
    pub blue: u8,
}

Representation of the <color> type.

Fields

red: u8green: u8blue: u8

Implementations

impl Color[src]

pub fn new(red: u8, green: u8, blue: u8) -> Color[src]

Constructs a new Color from red, green and blue values.

pub fn black() -> Color[src]

Constructs a new Color set to black.

pub fn white() -> Color[src]

Constructs a new Color set to white.

pub fn gray() -> Color[src]

Constructs a new Color set to gray.

pub fn red() -> Color[src]

Constructs a new Color set to red.

pub fn green() -> Color[src]

Constructs a new Color set to green.

pub fn blue() -> Color[src]

Constructs a new Color set to blue.

Trait Implementations

impl Clone for Color[src]

impl Copy for Color[src]

impl Debug for Color[src]

impl Display for Color[src]

impl FromStr for Color[src]

type Err = Error

The associated error which can be returned from parsing.

pub fn from_str(text: &str) -> Result<Color, Error>[src]

Parses Color from StrSpan.

Parsing is done according to spec:

color    ::= "#" hexdigit hexdigit hexdigit (hexdigit hexdigit hexdigit)?
             | "rgb(" wsp* integer comma integer comma integer wsp* ")"
             | "rgb(" wsp* integer "%" comma integer "%" comma integer "%" wsp* ")"
             | color-keyword
hexdigit ::= [0-9A-Fa-f]
comma    ::= wsp* "," wsp*

* The SVG spec has an error. There should be number, not an integer for percent values (details).

Errors

  • Returns error if a color has an invalid format.

  • Returns error if <color> is followed by <icccolor>. It’s not supported.

Notes

  • Any non-hexdigit bytes will be treated as 0.
  • Allocates heap memory for case-insensitive named colors comparison.

impl PartialEq<Color> for Color[src]

impl StructuralPartialEq for Color[src]

impl WriteBuffer for Color[src]

Auto Trait Implementations

impl RefUnwindSafe for Color

impl Send for Color

impl Sync for Color

impl Unpin for Color

impl UnwindSafe for Color

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> 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> ToString for T where
    T: Display + ?Sized
[src]

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.