pub struct StructureBoundingBox {
pub min: BlockPos,
pub max: BlockPos,
}Fields§
§min: BlockPos§max: BlockPosTrait Implementations§
Source§impl AzBuf for StructureBoundingBox
impl AzBuf for StructureBoundingBox
fn azalea_write(&self, buf: &mut impl Write) -> Result<(), Error>
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
Source§impl Clone for StructureBoundingBox
impl Clone for StructureBoundingBox
Source§fn clone(&self) -> StructureBoundingBox
fn clone(&self) -> StructureBoundingBox
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 StructureBoundingBox
impl Debug for StructureBoundingBox
Source§impl PartialEq for StructureBoundingBox
impl PartialEq for StructureBoundingBox
Source§fn eq(&self, other: &StructureBoundingBox) -> bool
fn eq(&self, other: &StructureBoundingBox) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StructureBoundingBox
Auto Trait Implementations§
impl Freeze for StructureBoundingBox
impl RefUnwindSafe for StructureBoundingBox
impl Send for StructureBoundingBox
impl Sync for StructureBoundingBox
impl Unpin for StructureBoundingBox
impl UnsafeUnpin for StructureBoundingBox
impl UnwindSafe for StructureBoundingBox
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