pub struct MinecraftPathNode {
pub x: i32,
pub y: i32,
pub z: i32,
pub contents: MinecraftPathNodeContents,
}Fields§
§x: i32§y: i32§z: i32§contents: MinecraftPathNodeContentsTrait Implementations§
Source§impl AzBuf for MinecraftPathNode
impl AzBuf for MinecraftPathNode
fn azalea_write(&self, buf: &mut impl Write) -> Result<(), Error>
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
Source§impl Clone for MinecraftPathNode
impl Clone for MinecraftPathNode
Source§fn clone(&self) -> MinecraftPathNode
fn clone(&self) -> MinecraftPathNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MinecraftPathNode
impl Debug for MinecraftPathNode
Source§impl PartialEq for MinecraftPathNode
impl PartialEq for MinecraftPathNode
Source§fn eq(&self, other: &MinecraftPathNode) -> bool
fn eq(&self, other: &MinecraftPathNode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MinecraftPathNode
Auto Trait Implementations§
impl Freeze for MinecraftPathNode
impl RefUnwindSafe for MinecraftPathNode
impl Send for MinecraftPathNode
impl Sync for MinecraftPathNode
impl Unpin for MinecraftPathNode
impl UnsafeUnpin for MinecraftPathNode
impl UnwindSafe for MinecraftPathNode
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