pub struct IVec4 {
pub x: i32,
pub y: i32,
pub z: i32,
pub w: i32,
}
Expand description
GLSL ivec4
type.
Fields§
§x: i32
x
field.
y: i32
y
field.
z: i32
z
field.
w: i32
w
field.
Trait Implementations§
impl Copy for IVec4
Auto Trait Implementations§
impl Freeze for IVec4
impl RefUnwindSafe for IVec4
impl Send for IVec4
impl Sync for IVec4
impl Unpin for IVec4
impl UnwindSafe for IVec4
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