pub struct Vec3f32 {
pub x: f32,
pub y: f32,
pub z: f32,
}Expand description
A lower precision Vec3, used for some fields in entity metadata.
Fields§
§x: f32§y: f32§z: f32Trait Implementations§
Source§impl AzBuf for Vec3f32
impl AzBuf for Vec3f32
fn azalea_write(&self, buf: &mut impl Write) -> Result<(), Error>
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
impl Copy for Vec3f32
impl StructuralPartialEq for Vec3f32
Auto Trait Implementations§
impl Freeze for Vec3f32
impl RefUnwindSafe for Vec3f32
impl Send for Vec3f32
impl Sync for Vec3f32
impl Unpin for Vec3f32
impl UnsafeUnpin for Vec3f32
impl UnwindSafe for Vec3f32
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