[][src]Struct imgui::ImColor

pub struct ImColor(_);

Wrap ImU32 (a type typically used by ImGui to store packed colors) This type is used to represent the color of drawing primitives in ImGui's custom drawing API.

The type implements From<ImU32>, From<ImVec4>, From<[f32; 4]>, From<[f32; 3]>, From<(f32, f32, f32, f32)> and From<(f32, f32, f32)> for convenience. If alpha is not provided, it is assumed to be 1.0 (255).

Trait Implementations

impl Clone for ImColor[src]

impl Copy for ImColor[src]

impl Debug for ImColor[src]

impl Eq for ImColor[src]

impl From<[f32; 3]> for ImColor[src]

impl From<[f32; 4]> for ImColor[src]

impl From<(f32, f32, f32, f32)> for ImColor[src]

impl From<(f32, f32, f32)> for ImColor[src]

impl From<ImColor> for ImU32[src]

impl From<u32> for ImColor[src]

impl PartialEq<ImColor> for ImColor[src]

impl StructuralEq for ImColor[src]

impl StructuralPartialEq for ImColor[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> 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.