Struct StructureVariant

Source
#[repr(C)]
pub struct StructureVariant {
Show 13 fields pub _bitfield_align_1: [u8; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>, pub size: u8, pub start: u8, pub biome: c_short, pub rotation: u8, pub mirror: u8, pub x: i16, pub y: i16, pub z: i16, pub sx: i16, pub sy: i16, pub sz: i16,
}

Fields§

§_bitfield_align_1: [u8; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>§size: u8§start: u8§biome: c_short§rotation: u8§mirror: u8§x: i16§y: i16§z: i16§sx: i16§sy: i16§sz: i16

Implementations§

Source§

impl StructureVariant

Source

pub fn abandoned(&self) -> u8

Source

pub fn set_abandoned(&mut self, val: u8)

Source

pub unsafe fn abandoned_raw(this: *const Self) -> u8

Source

pub unsafe fn set_abandoned_raw(this: *mut Self, val: u8)

Source

pub fn giant(&self) -> u8

Source

pub fn set_giant(&mut self, val: u8)

Source

pub unsafe fn giant_raw(this: *const Self) -> u8

Source

pub unsafe fn set_giant_raw(this: *mut Self, val: u8)

Source

pub fn underground(&self) -> u8

Source

pub fn set_underground(&mut self, val: u8)

Source

pub unsafe fn underground_raw(this: *const Self) -> u8

Source

pub unsafe fn set_underground_raw(this: *mut Self, val: u8)

Source

pub fn airpocket(&self) -> u8

Source

pub fn set_airpocket(&mut self, val: u8)

Source

pub unsafe fn airpocket_raw(this: *const Self) -> u8

Source

pub unsafe fn set_airpocket_raw(this: *mut Self, val: u8)

Source

pub fn basement(&self) -> u8

Source

pub fn set_basement(&mut self, val: u8)

Source

pub unsafe fn basement_raw(this: *const Self) -> u8

Source

pub unsafe fn set_basement_raw(this: *mut Self, val: u8)

Source

pub fn cracked(&self) -> u8

Source

pub fn set_cracked(&mut self, val: u8)

Source

pub unsafe fn cracked_raw(this: *const Self) -> u8

Source

pub unsafe fn set_cracked_raw(this: *mut Self, val: u8)

Source

pub fn new_bitfield_1( abandoned: u8, giant: u8, underground: u8, airpocket: u8, basement: u8, cracked: u8, ) -> __BindgenBitfieldUnit<[u8; 1]>

Trait Implementations§

Source§

impl Clone for StructureVariant

Source§

fn clone(&self) -> StructureVariant

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for StructureVariant

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for StructureVariant

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.