Struct scripthookv::types::Vector4 [−][src]
#[repr(C, align(1))]pub struct Vector4 {
pub x: f32,
pub y: f32,
pub z: f32,
pub w: f32,
// some fields omitted
}
Expand description
A vector4 representation that can be used with natives.
To make it compatible with natives every field is 8 byte aligned.
Fields
x: f32
y: f32
z: f32
w: f32
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Vector4
impl UnwindSafe for Vector4
Blanket Implementations
Mutably borrows from an owned value. Read more