pub struct TyVector3 {
pub x: f64,
pub y: f64,
pub z: f64,
}Expand description
A 3D vector with f64 components.
Fields§
§x: f64§y: f64§z: f64Implementations§
Trait Implementations§
impl Copy for TyVector3
impl StructuralPartialEq for TyVector3
Auto Trait Implementations§
impl Freeze for TyVector3
impl RefUnwindSafe for TyVector3
impl Send for TyVector3
impl Sync for TyVector3
impl Unpin for TyVector3
impl UnsafeUnpin for TyVector3
impl UnwindSafe for TyVector3
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