Struct csfml_graphics_sys::sfColor[][src]

#[repr(C)]pub struct sfColor {
    pub r: sfUint8,
    pub g: sfUint8,
    pub b: sfUint8,
    pub a: sfUint8,
}

Fields

r: sfUint8g: sfUint8b: sfUint8a: sfUint8

Trait Implementations

impl Clone for sfColor[src]

impl Copy for sfColor[src]

impl Debug for sfColor[src]

impl Eq for sfColor[src]

impl Hash for sfColor[src]

impl Ord for sfColor[src]

impl PartialEq<sfColor> for sfColor[src]

impl PartialOrd<sfColor> for sfColor[src]

impl StructuralEq for sfColor[src]

impl StructuralPartialEq for sfColor[src]

Auto Trait Implementations

impl RefUnwindSafe for sfColor

impl Send for sfColor

impl Sync for sfColor

impl Unpin for sfColor

impl UnwindSafe for sfColor

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, 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.