[][src]Struct phosphorus::GlCommand

pub struct GlCommand {
    pub name: String,
    pub proto: String,
    pub proto_group: Option<String>,
    pub params: Vec<GlCommandParam>,
    pub glx_attrs: Option<String>,
    pub alias_of: Option<String>,
    pub vec_equivalent: Option<String>,
}

A GL function we have to bind to.

Fields

name: Stringproto: Stringproto_group: Option<String>params: Vec<GlCommandParam>glx_attrs: Option<String>alias_of: Option<String>vec_equivalent: Option<String>

"call this instead if you want to pass via pointer"

Trait Implementations

impl Clone for GlCommand[src]

impl Debug for GlCommand[src]

impl Default for GlCommand[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.