Struct gl46::gl_core_types::GLbitfield[][src]

#[repr(transparent)]pub struct GLbitfield(pub c_uint);

A GL bitfield value.

You can mix around the bits of these values using standard bitwise ops.

Trait Implementations

impl BitAnd<GLbitfield> for GLbitfield[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAndAssign<GLbitfield> for GLbitfield[src]

impl BitOr<GLbitfield> for GLbitfield[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOrAssign<GLbitfield> for GLbitfield[src]

impl BitXor<GLbitfield> for GLbitfield[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXorAssign<GLbitfield> for GLbitfield[src]

impl Clone for GLbitfield[src]

impl Copy for GLbitfield[src]

impl Debug for GLbitfield[src]

impl Eq for GLbitfield[src]

impl Hash for GLbitfield[src]

impl Not for GLbitfield[src]

type Output = Self

The resulting type after applying the ! operator.

impl PartialEq<GLbitfield> for GLbitfield[src]

impl StructuralEq for GLbitfield[src]

impl StructuralPartialEq for GLbitfield[src]

Auto Trait Implementations

impl Send for GLbitfield

impl Sync for GLbitfield

impl Unpin for GLbitfield

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, 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.