Struct entmet_lib::datatypes::Vector3
source · pub struct Vector3 {
pub x: f32,
pub y: f32,
pub z: f32,
}Expand description
A Data Wrapper for an Vector in 3D space
Fields§
§x: f32The x-coordinate of the vector
y: f32The y-coordinate of the vector
z: f32The z-coordinate of the vector
Auto Trait Implementations§
impl Freeze for Vector3
impl RefUnwindSafe for Vector3
impl Send for Vector3
impl Sync for Vector3
impl Unpin for Vector3
impl UnwindSafe for Vector3
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