Struct imgui_sys::ImVec4 [] [src]

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

A tuple of 4 floating-point values

Fields

Methods

impl ImVec4
[src]

[src]

[src]

Trait Implementations

impl Copy for ImVec4
[src]

impl Clone for ImVec4
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ImVec4
[src]

[src]

Formats the value using the given formatter.

impl Default for ImVec4
[src]

[src]

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

impl PartialEq for ImVec4
[src]

[src]

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

[src]

This method tests for !=.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.

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

[src]

Performs the conversion.