[][src]Struct glsl_layout::bvec2

#[repr(transparent)]
pub struct bvec2(_);

Vector of 2 boolean values. foo: bvec2 is equivalent to glsl's bvec2 foo;

Examples

let x: bvec2 = [boolean::from(true); 2].into();

Trait Implementations

impl Std140 for bvec2[src]

impl AsStd140 for bvec2[src]

type Align = Align8

ZST that enforces alignment required for this type.

type Std140 = bvec2

Type that contain same data with memory layout matching glsl's layout(std140).

impl Copy for bvec2[src]

impl AsRef<[boolean; 2]> for bvec2[src]

impl AsRef<[boolean]> for bvec2[src]

impl Default for bvec2[src]

impl Eq for bvec2[src]

impl Clone for bvec2[src]

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

Performs copy-assignment from source. Read more

impl PartialOrd<bvec2> for bvec2[src]

impl PartialEq<bvec2> for bvec2[src]

impl<T> From<[T; 2]> for bvec2 where
    T: Into<boolean>, 
[src]

impl Ord for bvec2[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl AsMut<[boolean; 2]> for bvec2[src]

impl AsMut<[boolean]> for bvec2[src]

impl Hash for bvec2[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for bvec2[src]

Auto Trait Implementations

impl Unpin for bvec2

impl Sync for bvec2

impl Send for bvec2

impl UnwindSafe for bvec2

impl RefUnwindSafe for bvec2

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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