[−][src]Struct imgui::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
impl RefUnwindSafe for ImColor
impl Send for ImColor
impl Sync for ImColor
impl Unpin for ImColor
impl UnwindSafe for ImColor
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,