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