pub struct SculkShrieker {
pub can_summon: bool,
pub shrieking: bool,
pub waterlogged: bool,
}
Fields§
§can_summon: bool
§shrieking: bool
§waterlogged: bool
Trait Implementations§
Source§impl BlockTrait for SculkShrieker
impl BlockTrait for SculkShrieker
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 SculkShrieker
impl Clone for SculkShrieker
Source§fn clone(&self) -> SculkShrieker
fn clone(&self) -> SculkShrieker
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 SculkShrieker
impl Debug for SculkShrieker
Source§impl Default for SculkShrieker
impl Default for SculkShrieker
Source§impl From<SculkShrieker> for BlockState
impl From<SculkShrieker> for BlockState
Source§fn from(b: SculkShrieker) -> Self
fn from(b: SculkShrieker) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SculkShrieker
impl PartialEq for SculkShrieker
impl Copy for SculkShrieker
impl StructuralPartialEq for SculkShrieker
Auto Trait Implementations§
impl Freeze for SculkShrieker
impl RefUnwindSafe for SculkShrieker
impl Send for SculkShrieker
impl Sync for SculkShrieker
impl Unpin for SculkShrieker
impl UnwindSafe for SculkShrieker
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