[][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]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for ImColor[src]

impl Copy for ImColor[src]

impl PartialEq<ImColor> for ImColor[src]

impl From<ImColor> for ImU32[src]

impl From<u32> for ImColor[src]

impl From<ImVec4> for ImColor[src]

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

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

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

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

impl Debug for ImColor[src]

Auto Trait Implementations

impl Send for ImColor

impl Sync for ImColor

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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