Struct imgui::ImVec4[][src]

#[repr(C)]
pub struct ImVec4 { pub x: f32, pub y: f32, pub z: f32, pub w: f32, }

A tuple of 4 floating-point values

Fields

Methods

impl ImVec4
[src]

Trait Implementations

impl Clone for ImVec4
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ImVec4
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

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

Performs the conversion.

impl Into<(f32, f32, f32, f32)> for ImVec4
[src]

Performs the conversion.

impl Into<[f32; 4]> for ImVec4
[src]

Performs the conversion.

impl Default for ImVec4
[src]

Returns the "default value" for a type. Read more

impl Copy for ImVec4
[src]

impl PartialEq<ImVec4> for ImVec4
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<ImVec4> for ImColor
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for ImVec4

impl Sync for ImVec4