[][src]Struct imgui_sys::ImVec2

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

Fields

x: f32y: f32

Methods

impl ImVec2[src]

pub fn new(x: f32, y: f32) -> ImVec2[src]

pub fn zero() -> ImVec2[src]

Trait Implementations

impl PartialEq<ImVec2> for ImVec2[src]

impl Copy for ImVec2[src]

impl Default for ImVec2[src]

impl From<[f32; 2]> for ImVec2[src]

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

impl Into<[f32; 2]> for ImVec2[src]

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

impl Clone for ImVec2[src]

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

Performs copy-assignment from source. Read more

impl Debug for ImVec2[src]

Auto Trait Implementations

impl Send for ImVec2

impl Unpin for ImVec2

impl Sync for ImVec2

impl UnwindSafe for ImVec2

impl RefUnwindSafe for ImVec2

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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.

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

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

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