Enum imgui::ImId[][src]

pub enum ImId<'a> {
    Int(i32),
    Str(&'a str),
    Ptr(*const c_void),
}

Variants

Trait Implementations

impl From<i32> for ImId<'static>
[src]

Performs the conversion.

impl<'a, T: ?Sized + AsRef<str>> From<&'a T> for ImId<'a>
[src]

Performs the conversion.

impl<T> From<*const T> for ImId<'static>
[src]

Performs the conversion.

impl<T> From<*mut T> for ImId<'static>
[src]

Performs the conversion.

Auto Trait Implementations

impl<'a> !Send for ImId<'a>

impl<'a> !Sync for ImId<'a>