#[repr(C)]pub struct Vector4F {
pub x: f32,
pub y: f32,
pub z: f32,
pub w: f32,
}Fields§
§x: f32§y: f32§z: f32§w: f32Implementations§
Trait Implementations§
Source§impl AsRef<D2D_VECTOR_4F> for Vector4F
impl AsRef<D2D_VECTOR_4F> for Vector4F
Source§fn as_ref(&self) -> &D2D_VECTOR_4F
fn as_ref(&self) -> &D2D_VECTOR_4F
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl From<D2D_VECTOR_4F> for Vector4F
impl From<D2D_VECTOR_4F> for Vector4F
Source§fn from(src: D2D_VECTOR_4F) -> Vector4F
fn from(src: D2D_VECTOR_4F) -> Vector4F
Converts to this type from the input type.
Source§impl From<Vector4F> for D2D_VECTOR_4F
impl From<Vector4F> for D2D_VECTOR_4F
Source§fn from(src: Vector4F) -> D2D_VECTOR_4F
fn from(src: Vector4F) -> D2D_VECTOR_4F
Converts to this type from the input type.
impl Copy for Vector4F
Auto Trait Implementations§
impl Freeze for Vector4F
impl RefUnwindSafe for Vector4F
impl Send for Vector4F
impl Sync for Vector4F
impl Unpin for Vector4F
impl UnsafeUnpin for Vector4F
impl UnwindSafe for Vector4F
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