pub struct bvec4(/* private fields */);
Expand description
Vector of 4 boolean
values.
foo: bvec4
is equivalent to glsl’s bvec4 foo;
§Examples
let x: bvec4 = [boolean::from(true); 4].into();
Trait Implementations§
Source§impl Ord for bvec4
impl Ord for bvec4
Source§impl PartialOrd for bvec4
impl PartialOrd for bvec4
impl Copy for bvec4
impl Eq for bvec4
impl StructuralPartialEq for bvec4
Auto Trait Implementations§
impl Freeze for bvec4
impl RefUnwindSafe for bvec4
impl Send for bvec4
impl Sync for bvec4
impl Unpin for bvec4
impl UnwindSafe for bvec4
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more