pub struct JungleFenceGate {
pub facing: FacingCardinal,
pub in_wall: bool,
pub open: bool,
pub powered: bool,
}
Fields§
§facing: FacingCardinal
§in_wall: bool
§open: bool
§powered: bool
Trait Implementations§
Source§impl BlockTrait for JungleFenceGate
impl BlockTrait for JungleFenceGate
fn behavior(&self) -> BlockBehavior
Source§fn as_block_state(&self) -> BlockState
fn as_block_state(&self) -> BlockState
Convert the block to a block state. Read more
Source§fn as_registry_block(&self) -> Block
fn as_registry_block(&self) -> Block
Convert the block to an
azalea_registry::Block
. Read moreSource§impl Clone for JungleFenceGate
impl Clone for JungleFenceGate
Source§fn clone(&self) -> JungleFenceGate
fn clone(&self) -> JungleFenceGate
Returns a duplicate of the value. Read more
1.0.0 · 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 JungleFenceGate
impl Debug for JungleFenceGate
Source§impl Default for JungleFenceGate
impl Default for JungleFenceGate
Source§impl From<JungleFenceGate> for BlockState
impl From<JungleFenceGate> for BlockState
Source§fn from(b: JungleFenceGate) -> Self
fn from(b: JungleFenceGate) -> Self
Converts to this type from the input type.
Source§impl PartialEq for JungleFenceGate
impl PartialEq for JungleFenceGate
impl Copy for JungleFenceGate
impl StructuralPartialEq for JungleFenceGate
Auto Trait Implementations§
impl Freeze for JungleFenceGate
impl RefUnwindSafe for JungleFenceGate
impl Send for JungleFenceGate
impl Sync for JungleFenceGate
impl Unpin for JungleFenceGate
impl UnwindSafe for JungleFenceGate
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