pub struct bvec3(/* private fields */);
Expand description
Vector of 3 boolean
values.
foo: bvec3
is equivalent to glsl’s bvec3 foo;
§Examples
let x: bvec3 = [boolean::from(true); 3].into();
Trait Implementations§
Source§impl Ord for bvec3
impl Ord for bvec3
Source§impl PartialOrd for bvec3
impl PartialOrd for bvec3
impl Copy for bvec3
impl Eq for bvec3
impl StructuralPartialEq for bvec3
Auto Trait Implementations§
impl Freeze for bvec3
impl RefUnwindSafe for bvec3
impl Send for bvec3
impl Sync for bvec3
impl Unpin for bvec3
impl UnwindSafe for bvec3
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