Struct valence::protocol::BlockState

source ·
pub struct BlockState(/* private fields */);
Expand description

Represents the state of a block. This does not include block entity data such as the text on a sign, the design on a banner, or the content of a spawner.

Implementations§

source§

impl BlockState

source

pub const fn from_kind(kind: BlockKind) -> BlockState

Returns the default block state for a given block type.

source

pub const fn from_raw(id: u16) -> Option<BlockState>

Constructs a block state from a raw block state ID.

If the given ID is invalid, None is returned.

source

pub const fn to_kind(self) -> BlockKind

Returns the BlockKind of this block state.

source

pub const fn to_raw(self) -> u16

Converts this block state to its underlying raw block state ID.

The original block state can be recovered with BlockState::from_raw.

source

pub const fn max_raw() -> u16

Returns the maximum block state ID.

source

pub const fn wall_block_id(self) -> Option<BlockState>

Returns the wall variant of the block state.

If the given block state doesn’t have a wall variant, None is returned.

source

pub const fn get(self, name: PropName) -> Option<PropValue>

Gets the value of the property with the given name from this block.

If this block does not have the property, then None is returned.

source

pub const fn set(self, name: PropName, val: PropValue) -> BlockState

Sets the value of a property on this block, returning the modified block.

If this block does not have the given property or the property value is invalid, then the original block is returned unchanged.

source

pub const fn is_air(self) -> bool

If this block is air, cave_air or void_air.

source

pub const fn is_liquid(self) -> bool

If this block is water or lava.

source

pub const fn is_opaque(self) -> bool

source

pub const fn is_replaceable(self) -> bool

source

pub const fn blocks_motion(self) -> bool

source

pub fn collision_shapes(self) -> impl ExactSizeIterator + FusedIterator + Clone

source

pub const fn luminance(self) -> u8

source

pub const fn block_entity_kind(self) -> Option<BlockEntityKind>

source

pub const AIR: BlockState = _

The default block state for air.

source

pub const STONE: BlockState = _

The default block state for stone.

source

pub const GRANITE: BlockState = _

The default block state for granite.

source

pub const POLISHED_GRANITE: BlockState = _

The default block state for polished_granite.

source

pub const DIORITE: BlockState = _

The default block state for diorite.

source

pub const POLISHED_DIORITE: BlockState = _

The default block state for polished_diorite.

source

pub const ANDESITE: BlockState = _

The default block state for andesite.

source

pub const POLISHED_ANDESITE: BlockState = _

The default block state for polished_andesite.

source

pub const GRASS_BLOCK: BlockState = _

The default block state for grass_block.

source

pub const DIRT: BlockState = _

The default block state for dirt.

source

pub const COARSE_DIRT: BlockState = _

The default block state for coarse_dirt.

source

pub const PODZOL: BlockState = _

The default block state for podzol.

source

pub const COBBLESTONE: BlockState = _

The default block state for cobblestone.

source

pub const OAK_PLANKS: BlockState = _

The default block state for oak_planks.

source

pub const SPRUCE_PLANKS: BlockState = _

The default block state for spruce_planks.

source

pub const BIRCH_PLANKS: BlockState = _

The default block state for birch_planks.

source

pub const JUNGLE_PLANKS: BlockState = _

The default block state for jungle_planks.

source

pub const ACACIA_PLANKS: BlockState = _

The default block state for acacia_planks.

source

pub const CHERRY_PLANKS: BlockState = _

The default block state for cherry_planks.

source

pub const DARK_OAK_PLANKS: BlockState = _

The default block state for dark_oak_planks.

source

pub const MANGROVE_PLANKS: BlockState = _

The default block state for mangrove_planks.

source

pub const BAMBOO_PLANKS: BlockState = _

The default block state for bamboo_planks.

source

pub const BAMBOO_MOSAIC: BlockState = _

The default block state for bamboo_mosaic.

source

pub const OAK_SAPLING: BlockState = _

The default block state for oak_sapling.

source

pub const SPRUCE_SAPLING: BlockState = _

The default block state for spruce_sapling.

source

pub const BIRCH_SAPLING: BlockState = _

The default block state for birch_sapling.

source

pub const JUNGLE_SAPLING: BlockState = _

The default block state for jungle_sapling.

source

pub const ACACIA_SAPLING: BlockState = _

The default block state for acacia_sapling.

source

pub const CHERRY_SAPLING: BlockState = _

The default block state for cherry_sapling.

source

pub const DARK_OAK_SAPLING: BlockState = _

The default block state for dark_oak_sapling.

source

pub const MANGROVE_PROPAGULE: BlockState = _

The default block state for mangrove_propagule.

source

pub const BEDROCK: BlockState = _

The default block state for bedrock.

source

pub const WATER: BlockState = _

The default block state for water.

source

pub const LAVA: BlockState = _

The default block state for lava.

source

pub const SAND: BlockState = _

The default block state for sand.

source

pub const SUSPICIOUS_SAND: BlockState = _

The default block state for suspicious_sand.

source

pub const RED_SAND: BlockState = _

The default block state for red_sand.

source

pub const GRAVEL: BlockState = _

The default block state for gravel.

source

pub const SUSPICIOUS_GRAVEL: BlockState = _

The default block state for suspicious_gravel.

source

pub const GOLD_ORE: BlockState = _

The default block state for gold_ore.

source

pub const DEEPSLATE_GOLD_ORE: BlockState = _

The default block state for deepslate_gold_ore.

source

pub const IRON_ORE: BlockState = _

The default block state for iron_ore.

source

pub const DEEPSLATE_IRON_ORE: BlockState = _

The default block state for deepslate_iron_ore.

source

pub const COAL_ORE: BlockState = _

The default block state for coal_ore.

source

pub const DEEPSLATE_COAL_ORE: BlockState = _

The default block state for deepslate_coal_ore.

source

pub const NETHER_GOLD_ORE: BlockState = _

The default block state for nether_gold_ore.

source

pub const OAK_LOG: BlockState = _

The default block state for oak_log.

source

pub const SPRUCE_LOG: BlockState = _

The default block state for spruce_log.

source

pub const BIRCH_LOG: BlockState = _

The default block state for birch_log.

source

pub const JUNGLE_LOG: BlockState = _

The default block state for jungle_log.

source

pub const ACACIA_LOG: BlockState = _

The default block state for acacia_log.

source

pub const CHERRY_LOG: BlockState = _

The default block state for cherry_log.

source

pub const DARK_OAK_LOG: BlockState = _

The default block state for dark_oak_log.

source

pub const MANGROVE_LOG: BlockState = _

The default block state for mangrove_log.

source

pub const MANGROVE_ROOTS: BlockState = _

The default block state for mangrove_roots.

source

pub const MUDDY_MANGROVE_ROOTS: BlockState = _

The default block state for muddy_mangrove_roots.

source

pub const BAMBOO_BLOCK: BlockState = _

The default block state for bamboo_block.

source

pub const STRIPPED_SPRUCE_LOG: BlockState = _

The default block state for stripped_spruce_log.

source

pub const STRIPPED_BIRCH_LOG: BlockState = _

The default block state for stripped_birch_log.

source

pub const STRIPPED_JUNGLE_LOG: BlockState = _

The default block state for stripped_jungle_log.

source

pub const STRIPPED_ACACIA_LOG: BlockState = _

The default block state for stripped_acacia_log.

source

pub const STRIPPED_CHERRY_LOG: BlockState = _

The default block state for stripped_cherry_log.

source

pub const STRIPPED_DARK_OAK_LOG: BlockState = _

The default block state for stripped_dark_oak_log.

source

pub const STRIPPED_OAK_LOG: BlockState = _

The default block state for stripped_oak_log.

source

pub const STRIPPED_MANGROVE_LOG: BlockState = _

The default block state for stripped_mangrove_log.

source

pub const STRIPPED_BAMBOO_BLOCK: BlockState = _

The default block state for stripped_bamboo_block.

source

pub const OAK_WOOD: BlockState = _

The default block state for oak_wood.

source

pub const SPRUCE_WOOD: BlockState = _

The default block state for spruce_wood.

source

pub const BIRCH_WOOD: BlockState = _

The default block state for birch_wood.

source

pub const JUNGLE_WOOD: BlockState = _

The default block state for jungle_wood.

source

pub const ACACIA_WOOD: BlockState = _

The default block state for acacia_wood.

source

pub const CHERRY_WOOD: BlockState = _

The default block state for cherry_wood.

source

pub const DARK_OAK_WOOD: BlockState = _

The default block state for dark_oak_wood.

source

pub const MANGROVE_WOOD: BlockState = _

The default block state for mangrove_wood.

source

pub const STRIPPED_OAK_WOOD: BlockState = _

The default block state for stripped_oak_wood.

source

pub const STRIPPED_SPRUCE_WOOD: BlockState = _

The default block state for stripped_spruce_wood.

source

pub const STRIPPED_BIRCH_WOOD: BlockState = _

The default block state for stripped_birch_wood.

source

pub const STRIPPED_JUNGLE_WOOD: BlockState = _

The default block state for stripped_jungle_wood.

source

pub const STRIPPED_ACACIA_WOOD: BlockState = _

The default block state for stripped_acacia_wood.

source

pub const STRIPPED_CHERRY_WOOD: BlockState = _

The default block state for stripped_cherry_wood.

source

pub const STRIPPED_DARK_OAK_WOOD: BlockState = _

The default block state for stripped_dark_oak_wood.

source

pub const STRIPPED_MANGROVE_WOOD: BlockState = _

The default block state for stripped_mangrove_wood.

source

pub const OAK_LEAVES: BlockState = _

The default block state for oak_leaves.

source

pub const SPRUCE_LEAVES: BlockState = _

The default block state for spruce_leaves.

source

pub const BIRCH_LEAVES: BlockState = _

The default block state for birch_leaves.

source

pub const JUNGLE_LEAVES: BlockState = _

The default block state for jungle_leaves.

source

pub const ACACIA_LEAVES: BlockState = _

The default block state for acacia_leaves.

source

pub const CHERRY_LEAVES: BlockState = _

The default block state for cherry_leaves.

source

pub const DARK_OAK_LEAVES: BlockState = _

The default block state for dark_oak_leaves.

source

pub const MANGROVE_LEAVES: BlockState = _

The default block state for mangrove_leaves.

source

pub const AZALEA_LEAVES: BlockState = _

The default block state for azalea_leaves.

source

pub const FLOWERING_AZALEA_LEAVES: BlockState = _

The default block state for flowering_azalea_leaves.

source

pub const SPONGE: BlockState = _

The default block state for sponge.

source

pub const WET_SPONGE: BlockState = _

The default block state for wet_sponge.

source

pub const GLASS: BlockState = _

The default block state for glass.

source

pub const LAPIS_ORE: BlockState = _

The default block state for lapis_ore.

source

pub const DEEPSLATE_LAPIS_ORE: BlockState = _

The default block state for deepslate_lapis_ore.

source

pub const LAPIS_BLOCK: BlockState = _

The default block state for lapis_block.

source

pub const DISPENSER: BlockState = _

The default block state for dispenser.

source

pub const SANDSTONE: BlockState = _

The default block state for sandstone.

source

pub const CHISELED_SANDSTONE: BlockState = _

The default block state for chiseled_sandstone.

source

pub const CUT_SANDSTONE: BlockState = _

The default block state for cut_sandstone.

source

pub const NOTE_BLOCK: BlockState = _

The default block state for note_block.

source

pub const WHITE_BED: BlockState = _

The default block state for white_bed.

source

pub const ORANGE_BED: BlockState = _

The default block state for orange_bed.

source

pub const MAGENTA_BED: BlockState = _

The default block state for magenta_bed.

source

pub const LIGHT_BLUE_BED: BlockState = _

The default block state for light_blue_bed.

source

pub const YELLOW_BED: BlockState = _

The default block state for yellow_bed.

source

pub const LIME_BED: BlockState = _

The default block state for lime_bed.

source

pub const PINK_BED: BlockState = _

The default block state for pink_bed.

source

pub const GRAY_BED: BlockState = _

The default block state for gray_bed.

source

pub const LIGHT_GRAY_BED: BlockState = _

The default block state for light_gray_bed.

source

pub const CYAN_BED: BlockState = _

The default block state for cyan_bed.

source

pub const PURPLE_BED: BlockState = _

The default block state for purple_bed.

source

pub const BLUE_BED: BlockState = _

The default block state for blue_bed.

source

pub const BROWN_BED: BlockState = _

The default block state for brown_bed.

source

pub const GREEN_BED: BlockState = _

The default block state for green_bed.

source

pub const RED_BED: BlockState = _

The default block state for red_bed.

source

pub const BLACK_BED: BlockState = _

The default block state for black_bed.

source

pub const POWERED_RAIL: BlockState = _

The default block state for powered_rail.

source

pub const DETECTOR_RAIL: BlockState = _

The default block state for detector_rail.

source

pub const STICKY_PISTON: BlockState = _

The default block state for sticky_piston.

source

pub const COBWEB: BlockState = _

The default block state for cobweb.

source

pub const GRASS: BlockState = _

The default block state for grass.

source

pub const FERN: BlockState = _

The default block state for fern.

source

pub const DEAD_BUSH: BlockState = _

The default block state for dead_bush.

source

pub const SEAGRASS: BlockState = _

The default block state for seagrass.

source

pub const TALL_SEAGRASS: BlockState = _

The default block state for tall_seagrass.

source

pub const PISTON: BlockState = _

The default block state for piston.

source

pub const PISTON_HEAD: BlockState = _

The default block state for piston_head.

source

pub const WHITE_WOOL: BlockState = _

The default block state for white_wool.

source

pub const ORANGE_WOOL: BlockState = _

The default block state for orange_wool.

source

pub const MAGENTA_WOOL: BlockState = _

The default block state for magenta_wool.

source

pub const LIGHT_BLUE_WOOL: BlockState = _

The default block state for light_blue_wool.

source

pub const YELLOW_WOOL: BlockState = _

The default block state for yellow_wool.

source

pub const LIME_WOOL: BlockState = _

The default block state for lime_wool.

source

pub const PINK_WOOL: BlockState = _

The default block state for pink_wool.

source

pub const GRAY_WOOL: BlockState = _

The default block state for gray_wool.

source

pub const LIGHT_GRAY_WOOL: BlockState = _

The default block state for light_gray_wool.

source

pub const CYAN_WOOL: BlockState = _

The default block state for cyan_wool.

source

pub const PURPLE_WOOL: BlockState = _

The default block state for purple_wool.

source

pub const BLUE_WOOL: BlockState = _

The default block state for blue_wool.

source

pub const BROWN_WOOL: BlockState = _

The default block state for brown_wool.

source

pub const GREEN_WOOL: BlockState = _

The default block state for green_wool.

source

pub const RED_WOOL: BlockState = _

The default block state for red_wool.

source

pub const BLACK_WOOL: BlockState = _

The default block state for black_wool.

source

pub const MOVING_PISTON: BlockState = _

The default block state for moving_piston.

source

pub const DANDELION: BlockState = _

The default block state for dandelion.

source

pub const TORCHFLOWER: BlockState = _

The default block state for torchflower.

source

pub const POPPY: BlockState = _

The default block state for poppy.

source

pub const BLUE_ORCHID: BlockState = _

The default block state for blue_orchid.

source

pub const ALLIUM: BlockState = _

The default block state for allium.

source

pub const AZURE_BLUET: BlockState = _

The default block state for azure_bluet.

source

pub const RED_TULIP: BlockState = _

The default block state for red_tulip.

source

pub const ORANGE_TULIP: BlockState = _

The default block state for orange_tulip.

source

pub const WHITE_TULIP: BlockState = _

The default block state for white_tulip.

source

pub const PINK_TULIP: BlockState = _

The default block state for pink_tulip.

source

pub const OXEYE_DAISY: BlockState = _

The default block state for oxeye_daisy.

source

pub const CORNFLOWER: BlockState = _

The default block state for cornflower.

source

pub const WITHER_ROSE: BlockState = _

The default block state for wither_rose.

source

pub const LILY_OF_THE_VALLEY: BlockState = _

The default block state for lily_of_the_valley.

source

pub const BROWN_MUSHROOM: BlockState = _

The default block state for brown_mushroom.

source

pub const RED_MUSHROOM: BlockState = _

The default block state for red_mushroom.

source

pub const GOLD_BLOCK: BlockState = _

The default block state for gold_block.

source

pub const IRON_BLOCK: BlockState = _

The default block state for iron_block.

source

pub const BRICKS: BlockState = _

The default block state for bricks.

source

pub const TNT: BlockState = _

The default block state for tnt.

source

pub const BOOKSHELF: BlockState = _

The default block state for bookshelf.

source

pub const CHISELED_BOOKSHELF: BlockState = _

The default block state for chiseled_bookshelf.

source

pub const MOSSY_COBBLESTONE: BlockState = _

The default block state for mossy_cobblestone.

source

pub const OBSIDIAN: BlockState = _

The default block state for obsidian.

source

pub const TORCH: BlockState = _

The default block state for torch.

source

pub const WALL_TORCH: BlockState = _

The default block state for wall_torch.

source

pub const FIRE: BlockState = _

The default block state for fire.

source

pub const SOUL_FIRE: BlockState = _

The default block state for soul_fire.

source

pub const SPAWNER: BlockState = _

The default block state for spawner.

source

pub const OAK_STAIRS: BlockState = _

The default block state for oak_stairs.

source

pub const CHEST: BlockState = _

The default block state for chest.

source

pub const REDSTONE_WIRE: BlockState = _

The default block state for redstone_wire.

source

pub const DIAMOND_ORE: BlockState = _

The default block state for diamond_ore.

source

pub const DEEPSLATE_DIAMOND_ORE: BlockState = _

The default block state for deepslate_diamond_ore.

source

pub const DIAMOND_BLOCK: BlockState = _

The default block state for diamond_block.

source

pub const CRAFTING_TABLE: BlockState = _

The default block state for crafting_table.

source

pub const WHEAT: BlockState = _

The default block state for wheat.

source

pub const FARMLAND: BlockState = _

The default block state for farmland.

source

pub const FURNACE: BlockState = _

The default block state for furnace.

source

pub const OAK_SIGN: BlockState = _

The default block state for oak_sign.

source

pub const SPRUCE_SIGN: BlockState = _

The default block state for spruce_sign.

source

pub const BIRCH_SIGN: BlockState = _

The default block state for birch_sign.

source

pub const ACACIA_SIGN: BlockState = _

The default block state for acacia_sign.

source

pub const CHERRY_SIGN: BlockState = _

The default block state for cherry_sign.

source

pub const JUNGLE_SIGN: BlockState = _

The default block state for jungle_sign.

source

pub const DARK_OAK_SIGN: BlockState = _

The default block state for dark_oak_sign.

source

pub const MANGROVE_SIGN: BlockState = _

The default block state for mangrove_sign.

source

pub const BAMBOO_SIGN: BlockState = _

The default block state for bamboo_sign.

source

pub const OAK_DOOR: BlockState = _

The default block state for oak_door.

source

pub const LADDER: BlockState = _

The default block state for ladder.

source

pub const RAIL: BlockState = _

The default block state for rail.

source

pub const COBBLESTONE_STAIRS: BlockState = _

The default block state for cobblestone_stairs.

source

pub const OAK_WALL_SIGN: BlockState = _

The default block state for oak_wall_sign.

source

pub const SPRUCE_WALL_SIGN: BlockState = _

The default block state for spruce_wall_sign.

source

pub const BIRCH_WALL_SIGN: BlockState = _

The default block state for birch_wall_sign.

source

pub const ACACIA_WALL_SIGN: BlockState = _

The default block state for acacia_wall_sign.

source

pub const CHERRY_WALL_SIGN: BlockState = _

The default block state for cherry_wall_sign.

source

pub const JUNGLE_WALL_SIGN: BlockState = _

The default block state for jungle_wall_sign.

source

pub const DARK_OAK_WALL_SIGN: BlockState = _

The default block state for dark_oak_wall_sign.

source

pub const MANGROVE_WALL_SIGN: BlockState = _

The default block state for mangrove_wall_sign.

source

pub const BAMBOO_WALL_SIGN: BlockState = _

The default block state for bamboo_wall_sign.

source

pub const OAK_HANGING_SIGN: BlockState = _

The default block state for oak_hanging_sign.

source

pub const SPRUCE_HANGING_SIGN: BlockState = _

The default block state for spruce_hanging_sign.

source

pub const BIRCH_HANGING_SIGN: BlockState = _

The default block state for birch_hanging_sign.

source

pub const ACACIA_HANGING_SIGN: BlockState = _

The default block state for acacia_hanging_sign.

source

pub const CHERRY_HANGING_SIGN: BlockState = _

The default block state for cherry_hanging_sign.

source

pub const JUNGLE_HANGING_SIGN: BlockState = _

The default block state for jungle_hanging_sign.

source

pub const DARK_OAK_HANGING_SIGN: BlockState = _

The default block state for dark_oak_hanging_sign.

source

pub const CRIMSON_HANGING_SIGN: BlockState = _

The default block state for crimson_hanging_sign.

source

pub const WARPED_HANGING_SIGN: BlockState = _

The default block state for warped_hanging_sign.

source

pub const MANGROVE_HANGING_SIGN: BlockState = _

The default block state for mangrove_hanging_sign.

source

pub const BAMBOO_HANGING_SIGN: BlockState = _

The default block state for bamboo_hanging_sign.

source

pub const OAK_WALL_HANGING_SIGN: BlockState = _

The default block state for oak_wall_hanging_sign.

source

pub const SPRUCE_WALL_HANGING_SIGN: BlockState = _

The default block state for spruce_wall_hanging_sign.

source

pub const BIRCH_WALL_HANGING_SIGN: BlockState = _

The default block state for birch_wall_hanging_sign.

source

pub const ACACIA_WALL_HANGING_SIGN: BlockState = _

The default block state for acacia_wall_hanging_sign.

source

pub const CHERRY_WALL_HANGING_SIGN: BlockState = _

The default block state for cherry_wall_hanging_sign.

source

pub const JUNGLE_WALL_HANGING_SIGN: BlockState = _

The default block state for jungle_wall_hanging_sign.

source

pub const DARK_OAK_WALL_HANGING_SIGN: BlockState = _

The default block state for dark_oak_wall_hanging_sign.

source

pub const MANGROVE_WALL_HANGING_SIGN: BlockState = _

The default block state for mangrove_wall_hanging_sign.

source

pub const CRIMSON_WALL_HANGING_SIGN: BlockState = _

The default block state for crimson_wall_hanging_sign.

source

pub const WARPED_WALL_HANGING_SIGN: BlockState = _

The default block state for warped_wall_hanging_sign.

source

pub const BAMBOO_WALL_HANGING_SIGN: BlockState = _

The default block state for bamboo_wall_hanging_sign.

source

pub const LEVER: BlockState = _

The default block state for lever.

source

pub const STONE_PRESSURE_PLATE: BlockState = _

The default block state for stone_pressure_plate.

source

pub const IRON_DOOR: BlockState = _

The default block state for iron_door.

source

pub const OAK_PRESSURE_PLATE: BlockState = _

The default block state for oak_pressure_plate.

source

pub const SPRUCE_PRESSURE_PLATE: BlockState = _

The default block state for spruce_pressure_plate.

source

pub const BIRCH_PRESSURE_PLATE: BlockState = _

The default block state for birch_pressure_plate.

source

pub const JUNGLE_PRESSURE_PLATE: BlockState = _

The default block state for jungle_pressure_plate.

source

pub const ACACIA_PRESSURE_PLATE: BlockState = _

The default block state for acacia_pressure_plate.

source

pub const CHERRY_PRESSURE_PLATE: BlockState = _

The default block state for cherry_pressure_plate.

source

pub const DARK_OAK_PRESSURE_PLATE: BlockState = _

The default block state for dark_oak_pressure_plate.

source

pub const MANGROVE_PRESSURE_PLATE: BlockState = _

The default block state for mangrove_pressure_plate.

source

pub const BAMBOO_PRESSURE_PLATE: BlockState = _

The default block state for bamboo_pressure_plate.

source

pub const REDSTONE_ORE: BlockState = _

The default block state for redstone_ore.

source

pub const DEEPSLATE_REDSTONE_ORE: BlockState = _

The default block state for deepslate_redstone_ore.

source

pub const REDSTONE_TORCH: BlockState = _

The default block state for redstone_torch.

source

pub const REDSTONE_WALL_TORCH: BlockState = _

The default block state for redstone_wall_torch.

source

pub const STONE_BUTTON: BlockState = _

The default block state for stone_button.

source

pub const SNOW: BlockState = _

The default block state for snow.

source

pub const ICE: BlockState = _

The default block state for ice.

source

pub const SNOW_BLOCK: BlockState = _

The default block state for snow_block.

source

pub const CACTUS: BlockState = _

The default block state for cactus.

source

pub const CLAY: BlockState = _

The default block state for clay.

source

pub const SUGAR_CANE: BlockState = _

The default block state for sugar_cane.

source

pub const JUKEBOX: BlockState = _

The default block state for jukebox.

source

pub const OAK_FENCE: BlockState = _

The default block state for oak_fence.

source

pub const PUMPKIN: BlockState = _

The default block state for pumpkin.

source

pub const NETHERRACK: BlockState = _

The default block state for netherrack.

source

pub const SOUL_SAND: BlockState = _

The default block state for soul_sand.

source

pub const SOUL_SOIL: BlockState = _

The default block state for soul_soil.

source

pub const BASALT: BlockState = _

The default block state for basalt.

source

pub const POLISHED_BASALT: BlockState = _

The default block state for polished_basalt.

source

pub const SOUL_TORCH: BlockState = _

The default block state for soul_torch.

source

pub const SOUL_WALL_TORCH: BlockState = _

The default block state for soul_wall_torch.

source

pub const GLOWSTONE: BlockState = _

The default block state for glowstone.

source

pub const NETHER_PORTAL: BlockState = _

The default block state for nether_portal.

source

pub const CARVED_PUMPKIN: BlockState = _

The default block state for carved_pumpkin.

source

pub const JACK_O_LANTERN: BlockState = _

The default block state for jack_o_lantern.

source

pub const CAKE: BlockState = _

The default block state for cake.

source

pub const REPEATER: BlockState = _

The default block state for repeater.

source

pub const WHITE_STAINED_GLASS: BlockState = _

The default block state for white_stained_glass.

source

pub const ORANGE_STAINED_GLASS: BlockState = _

The default block state for orange_stained_glass.

source

pub const MAGENTA_STAINED_GLASS: BlockState = _

The default block state for magenta_stained_glass.

source

pub const LIGHT_BLUE_STAINED_GLASS: BlockState = _

The default block state for light_blue_stained_glass.

source

pub const YELLOW_STAINED_GLASS: BlockState = _

The default block state for yellow_stained_glass.

source

pub const LIME_STAINED_GLASS: BlockState = _

The default block state for lime_stained_glass.

source

pub const PINK_STAINED_GLASS: BlockState = _

The default block state for pink_stained_glass.

source

pub const GRAY_STAINED_GLASS: BlockState = _

The default block state for gray_stained_glass.

source

pub const LIGHT_GRAY_STAINED_GLASS: BlockState = _

The default block state for light_gray_stained_glass.

source

pub const CYAN_STAINED_GLASS: BlockState = _

The default block state for cyan_stained_glass.

source

pub const PURPLE_STAINED_GLASS: BlockState = _

The default block state for purple_stained_glass.

source

pub const BLUE_STAINED_GLASS: BlockState = _

The default block state for blue_stained_glass.

source

pub const BROWN_STAINED_GLASS: BlockState = _

The default block state for brown_stained_glass.

source

pub const GREEN_STAINED_GLASS: BlockState = _

The default block state for green_stained_glass.

source

pub const RED_STAINED_GLASS: BlockState = _

The default block state for red_stained_glass.

source

pub const BLACK_STAINED_GLASS: BlockState = _

The default block state for black_stained_glass.

source

pub const OAK_TRAPDOOR: BlockState = _

The default block state for oak_trapdoor.

source

pub const SPRUCE_TRAPDOOR: BlockState = _

The default block state for spruce_trapdoor.

source

pub const BIRCH_TRAPDOOR: BlockState = _

The default block state for birch_trapdoor.

source

pub const JUNGLE_TRAPDOOR: BlockState = _

The default block state for jungle_trapdoor.

source

pub const ACACIA_TRAPDOOR: BlockState = _

The default block state for acacia_trapdoor.

source

pub const CHERRY_TRAPDOOR: BlockState = _

The default block state for cherry_trapdoor.

source

pub const DARK_OAK_TRAPDOOR: BlockState = _

The default block state for dark_oak_trapdoor.

source

pub const MANGROVE_TRAPDOOR: BlockState = _

The default block state for mangrove_trapdoor.

source

pub const BAMBOO_TRAPDOOR: BlockState = _

The default block state for bamboo_trapdoor.

source

pub const STONE_BRICKS: BlockState = _

The default block state for stone_bricks.

source

pub const MOSSY_STONE_BRICKS: BlockState = _

The default block state for mossy_stone_bricks.

source

pub const CRACKED_STONE_BRICKS: BlockState = _

The default block state for cracked_stone_bricks.

source

pub const CHISELED_STONE_BRICKS: BlockState = _

The default block state for chiseled_stone_bricks.

source

pub const PACKED_MUD: BlockState = _

The default block state for packed_mud.

source

pub const MUD_BRICKS: BlockState = _

The default block state for mud_bricks.

source

pub const INFESTED_STONE: BlockState = _

The default block state for infested_stone.

source

pub const INFESTED_COBBLESTONE: BlockState = _

The default block state for infested_cobblestone.

source

pub const INFESTED_STONE_BRICKS: BlockState = _

The default block state for infested_stone_bricks.

source

pub const INFESTED_MOSSY_STONE_BRICKS: BlockState = _

The default block state for infested_mossy_stone_bricks.

source

pub const INFESTED_CRACKED_STONE_BRICKS: BlockState = _

The default block state for infested_cracked_stone_bricks.

source

pub const INFESTED_CHISELED_STONE_BRICKS: BlockState = _

The default block state for infested_chiseled_stone_bricks.

source

pub const BROWN_MUSHROOM_BLOCK: BlockState = _

The default block state for brown_mushroom_block.

source

pub const RED_MUSHROOM_BLOCK: BlockState = _

The default block state for red_mushroom_block.

source

pub const MUSHROOM_STEM: BlockState = _

The default block state for mushroom_stem.

source

pub const IRON_BARS: BlockState = _

The default block state for iron_bars.

source

pub const CHAIN: BlockState = _

The default block state for chain.

source

pub const GLASS_PANE: BlockState = _

The default block state for glass_pane.

source

pub const MELON: BlockState = _

The default block state for melon.

source

pub const ATTACHED_PUMPKIN_STEM: BlockState = _

The default block state for attached_pumpkin_stem.

source

pub const ATTACHED_MELON_STEM: BlockState = _

The default block state for attached_melon_stem.

source

pub const PUMPKIN_STEM: BlockState = _

The default block state for pumpkin_stem.

source

pub const MELON_STEM: BlockState = _

The default block state for melon_stem.

source

pub const VINE: BlockState = _

The default block state for vine.

source

pub const GLOW_LICHEN: BlockState = _

The default block state for glow_lichen.

source

pub const OAK_FENCE_GATE: BlockState = _

The default block state for oak_fence_gate.

source

pub const BRICK_STAIRS: BlockState = _

The default block state for brick_stairs.

source

pub const STONE_BRICK_STAIRS: BlockState = _

The default block state for stone_brick_stairs.

source

pub const MUD_BRICK_STAIRS: BlockState = _

The default block state for mud_brick_stairs.

source

pub const MYCELIUM: BlockState = _

The default block state for mycelium.

source

pub const LILY_PAD: BlockState = _

The default block state for lily_pad.

source

pub const NETHER_BRICKS: BlockState = _

The default block state for nether_bricks.

source

pub const NETHER_BRICK_FENCE: BlockState = _

The default block state for nether_brick_fence.

source

pub const NETHER_BRICK_STAIRS: BlockState = _

The default block state for nether_brick_stairs.

source

pub const NETHER_WART: BlockState = _

The default block state for nether_wart.

source

pub const ENCHANTING_TABLE: BlockState = _

The default block state for enchanting_table.

source

pub const BREWING_STAND: BlockState = _

The default block state for brewing_stand.

source

pub const CAULDRON: BlockState = _

The default block state for cauldron.

source

pub const WATER_CAULDRON: BlockState = _

The default block state for water_cauldron.

source

pub const LAVA_CAULDRON: BlockState = _

The default block state for lava_cauldron.

source

pub const POWDER_SNOW_CAULDRON: BlockState = _

The default block state for powder_snow_cauldron.

source

pub const END_PORTAL: BlockState = _

The default block state for end_portal.

source

pub const END_PORTAL_FRAME: BlockState = _

The default block state for end_portal_frame.

source

pub const END_STONE: BlockState = _

The default block state for end_stone.

source

pub const DRAGON_EGG: BlockState = _

The default block state for dragon_egg.

source

pub const REDSTONE_LAMP: BlockState = _

The default block state for redstone_lamp.

source

pub const COCOA: BlockState = _

The default block state for cocoa.

source

pub const SANDSTONE_STAIRS: BlockState = _

The default block state for sandstone_stairs.

source

pub const EMERALD_ORE: BlockState = _

The default block state for emerald_ore.

source

pub const DEEPSLATE_EMERALD_ORE: BlockState = _

The default block state for deepslate_emerald_ore.

source

pub const ENDER_CHEST: BlockState = _

The default block state for ender_chest.

source

pub const TRIPWIRE_HOOK: BlockState = _

The default block state for tripwire_hook.

source

pub const TRIPWIRE: BlockState = _

The default block state for tripwire.

source

pub const EMERALD_BLOCK: BlockState = _

The default block state for emerald_block.

source

pub const SPRUCE_STAIRS: BlockState = _

The default block state for spruce_stairs.

source

pub const BIRCH_STAIRS: BlockState = _

The default block state for birch_stairs.

source

pub const JUNGLE_STAIRS: BlockState = _

The default block state for jungle_stairs.

source

pub const COMMAND_BLOCK: BlockState = _

The default block state for command_block.

source

pub const BEACON: BlockState = _

The default block state for beacon.

source

pub const COBBLESTONE_WALL: BlockState = _

The default block state for cobblestone_wall.

source

pub const MOSSY_COBBLESTONE_WALL: BlockState = _

The default block state for mossy_cobblestone_wall.

source

pub const FLOWER_POT: BlockState = _

The default block state for flower_pot.

source

pub const POTTED_TORCHFLOWER: BlockState = _

The default block state for potted_torchflower.

source

pub const POTTED_OAK_SAPLING: BlockState = _

The default block state for potted_oak_sapling.

source

pub const POTTED_SPRUCE_SAPLING: BlockState = _

The default block state for potted_spruce_sapling.

source

pub const POTTED_BIRCH_SAPLING: BlockState = _

The default block state for potted_birch_sapling.

source

pub const POTTED_JUNGLE_SAPLING: BlockState = _

The default block state for potted_jungle_sapling.

source

pub const POTTED_ACACIA_SAPLING: BlockState = _

The default block state for potted_acacia_sapling.

source

pub const POTTED_CHERRY_SAPLING: BlockState = _

The default block state for potted_cherry_sapling.

source

pub const POTTED_DARK_OAK_SAPLING: BlockState = _

The default block state for potted_dark_oak_sapling.

source

pub const POTTED_MANGROVE_PROPAGULE: BlockState = _

The default block state for potted_mangrove_propagule.

source

pub const POTTED_FERN: BlockState = _

The default block state for potted_fern.

source

pub const POTTED_DANDELION: BlockState = _

The default block state for potted_dandelion.

source

pub const POTTED_POPPY: BlockState = _

The default block state for potted_poppy.

source

pub const POTTED_BLUE_ORCHID: BlockState = _

The default block state for potted_blue_orchid.

source

pub const POTTED_ALLIUM: BlockState = _

The default block state for potted_allium.

source

pub const POTTED_AZURE_BLUET: BlockState = _

The default block state for potted_azure_bluet.

source

pub const POTTED_RED_TULIP: BlockState = _

The default block state for potted_red_tulip.

source

pub const POTTED_ORANGE_TULIP: BlockState = _

The default block state for potted_orange_tulip.

source

pub const POTTED_WHITE_TULIP: BlockState = _

The default block state for potted_white_tulip.

source

pub const POTTED_PINK_TULIP: BlockState = _

The default block state for potted_pink_tulip.

source

pub const POTTED_OXEYE_DAISY: BlockState = _

The default block state for potted_oxeye_daisy.

source

pub const POTTED_CORNFLOWER: BlockState = _

The default block state for potted_cornflower.

source

pub const POTTED_LILY_OF_THE_VALLEY: BlockState = _

The default block state for potted_lily_of_the_valley.

source

pub const POTTED_WITHER_ROSE: BlockState = _

The default block state for potted_wither_rose.

source

pub const POTTED_RED_MUSHROOM: BlockState = _

The default block state for potted_red_mushroom.

source

pub const POTTED_BROWN_MUSHROOM: BlockState = _

The default block state for potted_brown_mushroom.

source

pub const POTTED_DEAD_BUSH: BlockState = _

The default block state for potted_dead_bush.

source

pub const POTTED_CACTUS: BlockState = _

The default block state for potted_cactus.

source

pub const CARROTS: BlockState = _

The default block state for carrots.

source

pub const POTATOES: BlockState = _

The default block state for potatoes.

source

pub const OAK_BUTTON: BlockState = _

The default block state for oak_button.

source

pub const SPRUCE_BUTTON: BlockState = _

The default block state for spruce_button.

source

pub const BIRCH_BUTTON: BlockState = _

The default block state for birch_button.

source

pub const JUNGLE_BUTTON: BlockState = _

The default block state for jungle_button.

source

pub const ACACIA_BUTTON: BlockState = _

The default block state for acacia_button.

source

pub const CHERRY_BUTTON: BlockState = _

The default block state for cherry_button.

source

pub const DARK_OAK_BUTTON: BlockState = _

The default block state for dark_oak_button.

source

pub const MANGROVE_BUTTON: BlockState = _

The default block state for mangrove_button.

source

pub const BAMBOO_BUTTON: BlockState = _

The default block state for bamboo_button.

source

pub const SKELETON_SKULL: BlockState = _

The default block state for skeleton_skull.

source

pub const SKELETON_WALL_SKULL: BlockState = _

The default block state for skeleton_wall_skull.

source

pub const WITHER_SKELETON_SKULL: BlockState = _

The default block state for wither_skeleton_skull.

source

pub const WITHER_SKELETON_WALL_SKULL: BlockState = _

The default block state for wither_skeleton_wall_skull.

source

pub const ZOMBIE_HEAD: BlockState = _

The default block state for zombie_head.

source

pub const ZOMBIE_WALL_HEAD: BlockState = _

The default block state for zombie_wall_head.

source

pub const PLAYER_HEAD: BlockState = _

The default block state for player_head.

source

pub const PLAYER_WALL_HEAD: BlockState = _

The default block state for player_wall_head.

source

pub const CREEPER_HEAD: BlockState = _

The default block state for creeper_head.

source

pub const CREEPER_WALL_HEAD: BlockState = _

The default block state for creeper_wall_head.

source

pub const DRAGON_HEAD: BlockState = _

The default block state for dragon_head.

source

pub const DRAGON_WALL_HEAD: BlockState = _

The default block state for dragon_wall_head.

source

pub const PIGLIN_HEAD: BlockState = _

The default block state for piglin_head.

source

pub const PIGLIN_WALL_HEAD: BlockState = _

The default block state for piglin_wall_head.

source

pub const ANVIL: BlockState = _

The default block state for anvil.

source

pub const CHIPPED_ANVIL: BlockState = _

The default block state for chipped_anvil.

source

pub const DAMAGED_ANVIL: BlockState = _

The default block state for damaged_anvil.

source

pub const TRAPPED_CHEST: BlockState = _

The default block state for trapped_chest.

source

pub const LIGHT_WEIGHTED_PRESSURE_PLATE: BlockState = _

The default block state for light_weighted_pressure_plate.

source

pub const HEAVY_WEIGHTED_PRESSURE_PLATE: BlockState = _

The default block state for heavy_weighted_pressure_plate.

source

pub const COMPARATOR: BlockState = _

The default block state for comparator.

source

pub const DAYLIGHT_DETECTOR: BlockState = _

The default block state for daylight_detector.

source

pub const REDSTONE_BLOCK: BlockState = _

The default block state for redstone_block.

source

pub const NETHER_QUARTZ_ORE: BlockState = _

The default block state for nether_quartz_ore.

source

pub const HOPPER: BlockState = _

The default block state for hopper.

source

pub const QUARTZ_BLOCK: BlockState = _

The default block state for quartz_block.

source

pub const CHISELED_QUARTZ_BLOCK: BlockState = _

The default block state for chiseled_quartz_block.

source

pub const QUARTZ_PILLAR: BlockState = _

The default block state for quartz_pillar.

source

pub const QUARTZ_STAIRS: BlockState = _

The default block state for quartz_stairs.

source

pub const ACTIVATOR_RAIL: BlockState = _

The default block state for activator_rail.

source

pub const DROPPER: BlockState = _

The default block state for dropper.

source

pub const WHITE_TERRACOTTA: BlockState = _

The default block state for white_terracotta.

source

pub const ORANGE_TERRACOTTA: BlockState = _

The default block state for orange_terracotta.

source

pub const MAGENTA_TERRACOTTA: BlockState = _

The default block state for magenta_terracotta.

source

pub const LIGHT_BLUE_TERRACOTTA: BlockState = _

The default block state for light_blue_terracotta.

source

pub const YELLOW_TERRACOTTA: BlockState = _

The default block state for yellow_terracotta.

source

pub const LIME_TERRACOTTA: BlockState = _

The default block state for lime_terracotta.

source

pub const PINK_TERRACOTTA: BlockState = _

The default block state for pink_terracotta.

source

pub const GRAY_TERRACOTTA: BlockState = _

The default block state for gray_terracotta.

source

pub const LIGHT_GRAY_TERRACOTTA: BlockState = _

The default block state for light_gray_terracotta.

source

pub const CYAN_TERRACOTTA: BlockState = _

The default block state for cyan_terracotta.

source

pub const PURPLE_TERRACOTTA: BlockState = _

The default block state for purple_terracotta.

source

pub const BLUE_TERRACOTTA: BlockState = _

The default block state for blue_terracotta.

source

pub const BROWN_TERRACOTTA: BlockState = _

The default block state for brown_terracotta.

source

pub const GREEN_TERRACOTTA: BlockState = _

The default block state for green_terracotta.

source

pub const RED_TERRACOTTA: BlockState = _

The default block state for red_terracotta.

source

pub const BLACK_TERRACOTTA: BlockState = _

The default block state for black_terracotta.

source

pub const WHITE_STAINED_GLASS_PANE: BlockState = _

The default block state for white_stained_glass_pane.

source

pub const ORANGE_STAINED_GLASS_PANE: BlockState = _

The default block state for orange_stained_glass_pane.

source

pub const MAGENTA_STAINED_GLASS_PANE: BlockState = _

The default block state for magenta_stained_glass_pane.

source

pub const LIGHT_BLUE_STAINED_GLASS_PANE: BlockState = _

The default block state for light_blue_stained_glass_pane.

source

pub const YELLOW_STAINED_GLASS_PANE: BlockState = _

The default block state for yellow_stained_glass_pane.

source

pub const LIME_STAINED_GLASS_PANE: BlockState = _

The default block state for lime_stained_glass_pane.

source

pub const PINK_STAINED_GLASS_PANE: BlockState = _

The default block state for pink_stained_glass_pane.

source

pub const GRAY_STAINED_GLASS_PANE: BlockState = _

The default block state for gray_stained_glass_pane.

source

pub const LIGHT_GRAY_STAINED_GLASS_PANE: BlockState = _

The default block state for light_gray_stained_glass_pane.

source

pub const CYAN_STAINED_GLASS_PANE: BlockState = _

The default block state for cyan_stained_glass_pane.

source

pub const PURPLE_STAINED_GLASS_PANE: BlockState = _

The default block state for purple_stained_glass_pane.

source

pub const BLUE_STAINED_GLASS_PANE: BlockState = _

The default block state for blue_stained_glass_pane.

source

pub const BROWN_STAINED_GLASS_PANE: BlockState = _

The default block state for brown_stained_glass_pane.

source

pub const GREEN_STAINED_GLASS_PANE: BlockState = _

The default block state for green_stained_glass_pane.

source

pub const RED_STAINED_GLASS_PANE: BlockState = _

The default block state for red_stained_glass_pane.

source

pub const BLACK_STAINED_GLASS_PANE: BlockState = _

The default block state for black_stained_glass_pane.

source

pub const ACACIA_STAIRS: BlockState = _

The default block state for acacia_stairs.

source

pub const CHERRY_STAIRS: BlockState = _

The default block state for cherry_stairs.

source

pub const DARK_OAK_STAIRS: BlockState = _

The default block state for dark_oak_stairs.

source

pub const MANGROVE_STAIRS: BlockState = _

The default block state for mangrove_stairs.

source

pub const BAMBOO_STAIRS: BlockState = _

The default block state for bamboo_stairs.

source

pub const BAMBOO_MOSAIC_STAIRS: BlockState = _

The default block state for bamboo_mosaic_stairs.

source

pub const SLIME_BLOCK: BlockState = _

The default block state for slime_block.

source

pub const BARRIER: BlockState = _

The default block state for barrier.

source

pub const LIGHT: BlockState = _

The default block state for light.

source

pub const IRON_TRAPDOOR: BlockState = _

The default block state for iron_trapdoor.

source

pub const PRISMARINE: BlockState = _

The default block state for prismarine.

source

pub const PRISMARINE_BRICKS: BlockState = _

The default block state for prismarine_bricks.

source

pub const DARK_PRISMARINE: BlockState = _

The default block state for dark_prismarine.

source

pub const PRISMARINE_STAIRS: BlockState = _

The default block state for prismarine_stairs.

source

pub const PRISMARINE_BRICK_STAIRS: BlockState = _

The default block state for prismarine_brick_stairs.

source

pub const DARK_PRISMARINE_STAIRS: BlockState = _

The default block state for dark_prismarine_stairs.

source

pub const PRISMARINE_SLAB: BlockState = _

The default block state for prismarine_slab.

source

pub const PRISMARINE_BRICK_SLAB: BlockState = _

The default block state for prismarine_brick_slab.

source

pub const DARK_PRISMARINE_SLAB: BlockState = _

The default block state for dark_prismarine_slab.

source

pub const SEA_LANTERN: BlockState = _

The default block state for sea_lantern.

source

pub const HAY_BLOCK: BlockState = _

The default block state for hay_block.

source

pub const WHITE_CARPET: BlockState = _

The default block state for white_carpet.

source

pub const ORANGE_CARPET: BlockState = _

The default block state for orange_carpet.

source

pub const MAGENTA_CARPET: BlockState = _

The default block state for magenta_carpet.

source

pub const LIGHT_BLUE_CARPET: BlockState = _

The default block state for light_blue_carpet.

source

pub const YELLOW_CARPET: BlockState = _

The default block state for yellow_carpet.

source

pub const LIME_CARPET: BlockState = _

The default block state for lime_carpet.

source

pub const PINK_CARPET: BlockState = _

The default block state for pink_carpet.

source

pub const GRAY_CARPET: BlockState = _

The default block state for gray_carpet.

source

pub const LIGHT_GRAY_CARPET: BlockState = _

The default block state for light_gray_carpet.

source

pub const CYAN_CARPET: BlockState = _

The default block state for cyan_carpet.

source

pub const PURPLE_CARPET: BlockState = _

The default block state for purple_carpet.

source

pub const BLUE_CARPET: BlockState = _

The default block state for blue_carpet.

source

pub const BROWN_CARPET: BlockState = _

The default block state for brown_carpet.

source

pub const GREEN_CARPET: BlockState = _

The default block state for green_carpet.

source

pub const RED_CARPET: BlockState = _

The default block state for red_carpet.

source

pub const BLACK_CARPET: BlockState = _

The default block state for black_carpet.

source

pub const TERRACOTTA: BlockState = _

The default block state for terracotta.

source

pub const COAL_BLOCK: BlockState = _

The default block state for coal_block.

source

pub const PACKED_ICE: BlockState = _

The default block state for packed_ice.

source

pub const SUNFLOWER: BlockState = _

The default block state for sunflower.

source

pub const LILAC: BlockState = _

The default block state for lilac.

source

pub const ROSE_BUSH: BlockState = _

The default block state for rose_bush.

source

pub const PEONY: BlockState = _

The default block state for peony.

source

pub const TALL_GRASS: BlockState = _

The default block state for tall_grass.

source

pub const LARGE_FERN: BlockState = _

The default block state for large_fern.

source

pub const WHITE_BANNER: BlockState = _

The default block state for white_banner.

source

pub const ORANGE_BANNER: BlockState = _

The default block state for orange_banner.

source

pub const MAGENTA_BANNER: BlockState = _

The default block state for magenta_banner.

source

pub const LIGHT_BLUE_BANNER: BlockState = _

The default block state for light_blue_banner.

source

pub const YELLOW_BANNER: BlockState = _

The default block state for yellow_banner.

source

pub const LIME_BANNER: BlockState = _

The default block state for lime_banner.

source

pub const PINK_BANNER: BlockState = _

The default block state for pink_banner.

source

pub const GRAY_BANNER: BlockState = _

The default block state for gray_banner.

source

pub const LIGHT_GRAY_BANNER: BlockState = _

The default block state for light_gray_banner.

source

pub const CYAN_BANNER: BlockState = _

The default block state for cyan_banner.

source

pub const PURPLE_BANNER: BlockState = _

The default block state for purple_banner.

source

pub const BLUE_BANNER: BlockState = _

The default block state for blue_banner.

source

pub const BROWN_BANNER: BlockState = _

The default block state for brown_banner.

source

pub const GREEN_BANNER: BlockState = _

The default block state for green_banner.

source

pub const RED_BANNER: BlockState = _

The default block state for red_banner.

source

pub const BLACK_BANNER: BlockState = _

The default block state for black_banner.

source

pub const WHITE_WALL_BANNER: BlockState = _

The default block state for white_wall_banner.

source

pub const ORANGE_WALL_BANNER: BlockState = _

The default block state for orange_wall_banner.

source

pub const MAGENTA_WALL_BANNER: BlockState = _

The default block state for magenta_wall_banner.

source

pub const LIGHT_BLUE_WALL_BANNER: BlockState = _

The default block state for light_blue_wall_banner.

source

pub const YELLOW_WALL_BANNER: BlockState = _

The default block state for yellow_wall_banner.

source

pub const LIME_WALL_BANNER: BlockState = _

The default block state for lime_wall_banner.

source

pub const PINK_WALL_BANNER: BlockState = _

The default block state for pink_wall_banner.

source

pub const GRAY_WALL_BANNER: BlockState = _

The default block state for gray_wall_banner.

source

pub const LIGHT_GRAY_WALL_BANNER: BlockState = _

The default block state for light_gray_wall_banner.

source

pub const CYAN_WALL_BANNER: BlockState = _

The default block state for cyan_wall_banner.

source

pub const PURPLE_WALL_BANNER: BlockState = _

The default block state for purple_wall_banner.

source

pub const BLUE_WALL_BANNER: BlockState = _

The default block state for blue_wall_banner.

source

pub const BROWN_WALL_BANNER: BlockState = _

The default block state for brown_wall_banner.

source

pub const GREEN_WALL_BANNER: BlockState = _

The default block state for green_wall_banner.

source

pub const RED_WALL_BANNER: BlockState = _

The default block state for red_wall_banner.

source

pub const BLACK_WALL_BANNER: BlockState = _

The default block state for black_wall_banner.

source

pub const RED_SANDSTONE: BlockState = _

The default block state for red_sandstone.

source

pub const CHISELED_RED_SANDSTONE: BlockState = _

The default block state for chiseled_red_sandstone.

source

pub const CUT_RED_SANDSTONE: BlockState = _

The default block state for cut_red_sandstone.

source

pub const RED_SANDSTONE_STAIRS: BlockState = _

The default block state for red_sandstone_stairs.

source

pub const OAK_SLAB: BlockState = _

The default block state for oak_slab.

source

pub const SPRUCE_SLAB: BlockState = _

The default block state for spruce_slab.

source

pub const BIRCH_SLAB: BlockState = _

The default block state for birch_slab.

source

pub const JUNGLE_SLAB: BlockState = _

The default block state for jungle_slab.

source

pub const ACACIA_SLAB: BlockState = _

The default block state for acacia_slab.

source

pub const CHERRY_SLAB: BlockState = _

The default block state for cherry_slab.

source

pub const DARK_OAK_SLAB: BlockState = _

The default block state for dark_oak_slab.

source

pub const MANGROVE_SLAB: BlockState = _

The default block state for mangrove_slab.

source

pub const BAMBOO_SLAB: BlockState = _

The default block state for bamboo_slab.

source

pub const BAMBOO_MOSAIC_SLAB: BlockState = _

The default block state for bamboo_mosaic_slab.

source

pub const STONE_SLAB: BlockState = _

The default block state for stone_slab.

source

pub const SMOOTH_STONE_SLAB: BlockState = _

The default block state for smooth_stone_slab.

source

pub const SANDSTONE_SLAB: BlockState = _

The default block state for sandstone_slab.

source

pub const CUT_SANDSTONE_SLAB: BlockState = _

The default block state for cut_sandstone_slab.

source

pub const PETRIFIED_OAK_SLAB: BlockState = _

The default block state for petrified_oak_slab.

source

pub const COBBLESTONE_SLAB: BlockState = _

The default block state for cobblestone_slab.

source

pub const BRICK_SLAB: BlockState = _

The default block state for brick_slab.

source

pub const STONE_BRICK_SLAB: BlockState = _

The default block state for stone_brick_slab.

source

pub const MUD_BRICK_SLAB: BlockState = _

The default block state for mud_brick_slab.

source

pub const NETHER_BRICK_SLAB: BlockState = _

The default block state for nether_brick_slab.

source

pub const QUARTZ_SLAB: BlockState = _

The default block state for quartz_slab.

source

pub const RED_SANDSTONE_SLAB: BlockState = _

The default block state for red_sandstone_slab.

source

pub const CUT_RED_SANDSTONE_SLAB: BlockState = _

The default block state for cut_red_sandstone_slab.

source

pub const PURPUR_SLAB: BlockState = _

The default block state for purpur_slab.

source

pub const SMOOTH_STONE: BlockState = _

The default block state for smooth_stone.

source

pub const SMOOTH_SANDSTONE: BlockState = _

The default block state for smooth_sandstone.

source

pub const SMOOTH_QUARTZ: BlockState = _

The default block state for smooth_quartz.

source

pub const SMOOTH_RED_SANDSTONE: BlockState = _

The default block state for smooth_red_sandstone.

source

pub const SPRUCE_FENCE_GATE: BlockState = _

The default block state for spruce_fence_gate.

source

pub const BIRCH_FENCE_GATE: BlockState = _

The default block state for birch_fence_gate.

source

pub const JUNGLE_FENCE_GATE: BlockState = _

The default block state for jungle_fence_gate.

source

pub const ACACIA_FENCE_GATE: BlockState = _

The default block state for acacia_fence_gate.

source

pub const CHERRY_FENCE_GATE: BlockState = _

The default block state for cherry_fence_gate.

source

pub const DARK_OAK_FENCE_GATE: BlockState = _

The default block state for dark_oak_fence_gate.

source

pub const MANGROVE_FENCE_GATE: BlockState = _

The default block state for mangrove_fence_gate.

source

pub const BAMBOO_FENCE_GATE: BlockState = _

The default block state for bamboo_fence_gate.

source

pub const SPRUCE_FENCE: BlockState = _

The default block state for spruce_fence.

source

pub const BIRCH_FENCE: BlockState = _

The default block state for birch_fence.

source

pub const JUNGLE_FENCE: BlockState = _

The default block state for jungle_fence.

source

pub const ACACIA_FENCE: BlockState = _

The default block state for acacia_fence.

source

pub const CHERRY_FENCE: BlockState = _

The default block state for cherry_fence.

source

pub const DARK_OAK_FENCE: BlockState = _

The default block state for dark_oak_fence.

source

pub const MANGROVE_FENCE: BlockState = _

The default block state for mangrove_fence.

source

pub const BAMBOO_FENCE: BlockState = _

The default block state for bamboo_fence.

source

pub const SPRUCE_DOOR: BlockState = _

The default block state for spruce_door.

source

pub const BIRCH_DOOR: BlockState = _

The default block state for birch_door.

source

pub const JUNGLE_DOOR: BlockState = _

The default block state for jungle_door.

source

pub const ACACIA_DOOR: BlockState = _

The default block state for acacia_door.

source

pub const CHERRY_DOOR: BlockState = _

The default block state for cherry_door.

source

pub const DARK_OAK_DOOR: BlockState = _

The default block state for dark_oak_door.

source

pub const MANGROVE_DOOR: BlockState = _

The default block state for mangrove_door.

source

pub const BAMBOO_DOOR: BlockState = _

The default block state for bamboo_door.

source

pub const END_ROD: BlockState = _

The default block state for end_rod.

source

pub const CHORUS_PLANT: BlockState = _

The default block state for chorus_plant.

source

pub const CHORUS_FLOWER: BlockState = _

The default block state for chorus_flower.

source

pub const PURPUR_BLOCK: BlockState = _

The default block state for purpur_block.

source

pub const PURPUR_PILLAR: BlockState = _

The default block state for purpur_pillar.

source

pub const PURPUR_STAIRS: BlockState = _

The default block state for purpur_stairs.

source

pub const END_STONE_BRICKS: BlockState = _

The default block state for end_stone_bricks.

source

pub const TORCHFLOWER_CROP: BlockState = _

The default block state for torchflower_crop.

source

pub const PITCHER_CROP: BlockState = _

The default block state for pitcher_crop.

source

pub const PITCHER_PLANT: BlockState = _

The default block state for pitcher_plant.

source

pub const BEETROOTS: BlockState = _

The default block state for beetroots.

source

pub const DIRT_PATH: BlockState = _

The default block state for dirt_path.

source

pub const END_GATEWAY: BlockState = _

The default block state for end_gateway.

source

pub const REPEATING_COMMAND_BLOCK: BlockState = _

The default block state for repeating_command_block.

source

pub const CHAIN_COMMAND_BLOCK: BlockState = _

The default block state for chain_command_block.

source

pub const FROSTED_ICE: BlockState = _

The default block state for frosted_ice.

source

pub const MAGMA_BLOCK: BlockState = _

The default block state for magma_block.

source

pub const NETHER_WART_BLOCK: BlockState = _

The default block state for nether_wart_block.

source

pub const RED_NETHER_BRICKS: BlockState = _

The default block state for red_nether_bricks.

source

pub const BONE_BLOCK: BlockState = _

The default block state for bone_block.

source

pub const STRUCTURE_VOID: BlockState = _

The default block state for structure_void.

source

pub const OBSERVER: BlockState = _

The default block state for observer.

source

pub const SHULKER_BOX: BlockState = _

The default block state for shulker_box.

source

pub const WHITE_SHULKER_BOX: BlockState = _

The default block state for white_shulker_box.

source

pub const ORANGE_SHULKER_BOX: BlockState = _

The default block state for orange_shulker_box.

source

pub const MAGENTA_SHULKER_BOX: BlockState = _

The default block state for magenta_shulker_box.

source

pub const LIGHT_BLUE_SHULKER_BOX: BlockState = _

The default block state for light_blue_shulker_box.

source

pub const YELLOW_SHULKER_BOX: BlockState = _

The default block state for yellow_shulker_box.

source

pub const LIME_SHULKER_BOX: BlockState = _

The default block state for lime_shulker_box.

source

pub const PINK_SHULKER_BOX: BlockState = _

The default block state for pink_shulker_box.

source

pub const GRAY_SHULKER_BOX: BlockState = _

The default block state for gray_shulker_box.

source

pub const LIGHT_GRAY_SHULKER_BOX: BlockState = _

The default block state for light_gray_shulker_box.

source

pub const CYAN_SHULKER_BOX: BlockState = _

The default block state for cyan_shulker_box.

source

pub const PURPLE_SHULKER_BOX: BlockState = _

The default block state for purple_shulker_box.

source

pub const BLUE_SHULKER_BOX: BlockState = _

The default block state for blue_shulker_box.

source

pub const BROWN_SHULKER_BOX: BlockState = _

The default block state for brown_shulker_box.

source

pub const GREEN_SHULKER_BOX: BlockState = _

The default block state for green_shulker_box.

source

pub const RED_SHULKER_BOX: BlockState = _

The default block state for red_shulker_box.

source

pub const BLACK_SHULKER_BOX: BlockState = _

The default block state for black_shulker_box.

source

pub const WHITE_GLAZED_TERRACOTTA: BlockState = _

The default block state for white_glazed_terracotta.

source

pub const ORANGE_GLAZED_TERRACOTTA: BlockState = _

The default block state for orange_glazed_terracotta.

source

pub const MAGENTA_GLAZED_TERRACOTTA: BlockState = _

The default block state for magenta_glazed_terracotta.

source

pub const LIGHT_BLUE_GLAZED_TERRACOTTA: BlockState = _

The default block state for light_blue_glazed_terracotta.

source

pub const YELLOW_GLAZED_TERRACOTTA: BlockState = _

The default block state for yellow_glazed_terracotta.

source

pub const LIME_GLAZED_TERRACOTTA: BlockState = _

The default block state for lime_glazed_terracotta.

source

pub const PINK_GLAZED_TERRACOTTA: BlockState = _

The default block state for pink_glazed_terracotta.

source

pub const GRAY_GLAZED_TERRACOTTA: BlockState = _

The default block state for gray_glazed_terracotta.

source

pub const LIGHT_GRAY_GLAZED_TERRACOTTA: BlockState = _

The default block state for light_gray_glazed_terracotta.

source

pub const CYAN_GLAZED_TERRACOTTA: BlockState = _

The default block state for cyan_glazed_terracotta.

source

pub const PURPLE_GLAZED_TERRACOTTA: BlockState = _

The default block state for purple_glazed_terracotta.

source

pub const BLUE_GLAZED_TERRACOTTA: BlockState = _

The default block state for blue_glazed_terracotta.

source

pub const BROWN_GLAZED_TERRACOTTA: BlockState = _

The default block state for brown_glazed_terracotta.

source

pub const GREEN_GLAZED_TERRACOTTA: BlockState = _

The default block state for green_glazed_terracotta.

source

pub const RED_GLAZED_TERRACOTTA: BlockState = _

The default block state for red_glazed_terracotta.

source

pub const BLACK_GLAZED_TERRACOTTA: BlockState = _

The default block state for black_glazed_terracotta.

source

pub const WHITE_CONCRETE: BlockState = _

The default block state for white_concrete.

source

pub const ORANGE_CONCRETE: BlockState = _

The default block state for orange_concrete.

source

pub const MAGENTA_CONCRETE: BlockState = _

The default block state for magenta_concrete.

source

pub const LIGHT_BLUE_CONCRETE: BlockState = _

The default block state for light_blue_concrete.

source

pub const YELLOW_CONCRETE: BlockState = _

The default block state for yellow_concrete.

source

pub const LIME_CONCRETE: BlockState = _

The default block state for lime_concrete.

source

pub const PINK_CONCRETE: BlockState = _

The default block state for pink_concrete.

source

pub const GRAY_CONCRETE: BlockState = _

The default block state for gray_concrete.

source

pub const LIGHT_GRAY_CONCRETE: BlockState = _

The default block state for light_gray_concrete.

source

pub const CYAN_CONCRETE: BlockState = _

The default block state for cyan_concrete.

source

pub const PURPLE_CONCRETE: BlockState = _

The default block state for purple_concrete.

source

pub const BLUE_CONCRETE: BlockState = _

The default block state for blue_concrete.

source

pub const BROWN_CONCRETE: BlockState = _

The default block state for brown_concrete.

source

pub const GREEN_CONCRETE: BlockState = _

The default block state for green_concrete.

source

pub const RED_CONCRETE: BlockState = _

The default block state for red_concrete.

source

pub const BLACK_CONCRETE: BlockState = _

The default block state for black_concrete.

source

pub const WHITE_CONCRETE_POWDER: BlockState = _

The default block state for white_concrete_powder.

source

pub const ORANGE_CONCRETE_POWDER: BlockState = _

The default block state for orange_concrete_powder.

source

pub const MAGENTA_CONCRETE_POWDER: BlockState = _

The default block state for magenta_concrete_powder.

source

pub const LIGHT_BLUE_CONCRETE_POWDER: BlockState = _

The default block state for light_blue_concrete_powder.

source

pub const YELLOW_CONCRETE_POWDER: BlockState = _

The default block state for yellow_concrete_powder.

source

pub const LIME_CONCRETE_POWDER: BlockState = _

The default block state for lime_concrete_powder.

source

pub const PINK_CONCRETE_POWDER: BlockState = _

The default block state for pink_concrete_powder.

source

pub const GRAY_CONCRETE_POWDER: BlockState = _

The default block state for gray_concrete_powder.

source

pub const LIGHT_GRAY_CONCRETE_POWDER: BlockState = _

The default block state for light_gray_concrete_powder.

source

pub const CYAN_CONCRETE_POWDER: BlockState = _

The default block state for cyan_concrete_powder.

source

pub const PURPLE_CONCRETE_POWDER: BlockState = _

The default block state for purple_concrete_powder.

source

pub const BLUE_CONCRETE_POWDER: BlockState = _

The default block state for blue_concrete_powder.

source

pub const BROWN_CONCRETE_POWDER: BlockState = _

The default block state for brown_concrete_powder.

source

pub const GREEN_CONCRETE_POWDER: BlockState = _

The default block state for green_concrete_powder.

source

pub const RED_CONCRETE_POWDER: BlockState = _

The default block state for red_concrete_powder.

source

pub const BLACK_CONCRETE_POWDER: BlockState = _

The default block state for black_concrete_powder.

source

pub const KELP: BlockState = _

The default block state for kelp.

source

pub const KELP_PLANT: BlockState = _

The default block state for kelp_plant.

source

pub const DRIED_KELP_BLOCK: BlockState = _

The default block state for dried_kelp_block.

source

pub const TURTLE_EGG: BlockState = _

The default block state for turtle_egg.

source

pub const SNIFFER_EGG: BlockState = _

The default block state for sniffer_egg.

source

pub const DEAD_TUBE_CORAL_BLOCK: BlockState = _

The default block state for dead_tube_coral_block.

source

pub const DEAD_BRAIN_CORAL_BLOCK: BlockState = _

The default block state for dead_brain_coral_block.

source

pub const DEAD_BUBBLE_CORAL_BLOCK: BlockState = _

The default block state for dead_bubble_coral_block.

source

pub const DEAD_FIRE_CORAL_BLOCK: BlockState = _

The default block state for dead_fire_coral_block.

source

pub const DEAD_HORN_CORAL_BLOCK: BlockState = _

The default block state for dead_horn_coral_block.

source

pub const TUBE_CORAL_BLOCK: BlockState = _

The default block state for tube_coral_block.

source

pub const BRAIN_CORAL_BLOCK: BlockState = _

The default block state for brain_coral_block.

source

pub const BUBBLE_CORAL_BLOCK: BlockState = _

The default block state for bubble_coral_block.

source

pub const FIRE_CORAL_BLOCK: BlockState = _

The default block state for fire_coral_block.

source

pub const HORN_CORAL_BLOCK: BlockState = _

The default block state for horn_coral_block.

source

pub const DEAD_TUBE_CORAL: BlockState = _

The default block state for dead_tube_coral.

source

pub const DEAD_BRAIN_CORAL: BlockState = _

The default block state for dead_brain_coral.

source

pub const DEAD_BUBBLE_CORAL: BlockState = _

The default block state for dead_bubble_coral.

source

pub const DEAD_FIRE_CORAL: BlockState = _

The default block state for dead_fire_coral.

source

pub const DEAD_HORN_CORAL: BlockState = _

The default block state for dead_horn_coral.

source

pub const TUBE_CORAL: BlockState = _

The default block state for tube_coral.

source

pub const BRAIN_CORAL: BlockState = _

The default block state for brain_coral.

source

pub const BUBBLE_CORAL: BlockState = _

The default block state for bubble_coral.

source

pub const FIRE_CORAL: BlockState = _

The default block state for fire_coral.

source

pub const HORN_CORAL: BlockState = _

The default block state for horn_coral.

source

pub const DEAD_TUBE_CORAL_FAN: BlockState = _

The default block state for dead_tube_coral_fan.

source

pub const DEAD_BRAIN_CORAL_FAN: BlockState = _

The default block state for dead_brain_coral_fan.

source

pub const DEAD_BUBBLE_CORAL_FAN: BlockState = _

The default block state for dead_bubble_coral_fan.

source

pub const DEAD_FIRE_CORAL_FAN: BlockState = _

The default block state for dead_fire_coral_fan.

source

pub const DEAD_HORN_CORAL_FAN: BlockState = _

The default block state for dead_horn_coral_fan.

source

pub const TUBE_CORAL_FAN: BlockState = _

The default block state for tube_coral_fan.

source

pub const BRAIN_CORAL_FAN: BlockState = _

The default block state for brain_coral_fan.

source

pub const BUBBLE_CORAL_FAN: BlockState = _

The default block state for bubble_coral_fan.

source

pub const FIRE_CORAL_FAN: BlockState = _

The default block state for fire_coral_fan.

source

pub const HORN_CORAL_FAN: BlockState = _

The default block state for horn_coral_fan.

source

pub const DEAD_TUBE_CORAL_WALL_FAN: BlockState = _

The default block state for dead_tube_coral_wall_fan.

source

pub const DEAD_BRAIN_CORAL_WALL_FAN: BlockState = _

The default block state for dead_brain_coral_wall_fan.

source

pub const DEAD_BUBBLE_CORAL_WALL_FAN: BlockState = _

The default block state for dead_bubble_coral_wall_fan.

source

pub const DEAD_FIRE_CORAL_WALL_FAN: BlockState = _

The default block state for dead_fire_coral_wall_fan.

source

pub const DEAD_HORN_CORAL_WALL_FAN: BlockState = _

The default block state for dead_horn_coral_wall_fan.

source

pub const TUBE_CORAL_WALL_FAN: BlockState = _

The default block state for tube_coral_wall_fan.

source

pub const BRAIN_CORAL_WALL_FAN: BlockState = _

The default block state for brain_coral_wall_fan.

source

pub const BUBBLE_CORAL_WALL_FAN: BlockState = _

The default block state for bubble_coral_wall_fan.

source

pub const FIRE_CORAL_WALL_FAN: BlockState = _

The default block state for fire_coral_wall_fan.

source

pub const HORN_CORAL_WALL_FAN: BlockState = _

The default block state for horn_coral_wall_fan.

source

pub const SEA_PICKLE: BlockState = _

The default block state for sea_pickle.

source

pub const BLUE_ICE: BlockState = _

The default block state for blue_ice.

source

pub const CONDUIT: BlockState = _

The default block state for conduit.

source

pub const BAMBOO_SAPLING: BlockState = _

The default block state for bamboo_sapling.

source

pub const BAMBOO: BlockState = _

The default block state for bamboo.

source

pub const POTTED_BAMBOO: BlockState = _

The default block state for potted_bamboo.

source

pub const VOID_AIR: BlockState = _

The default block state for void_air.

source

pub const CAVE_AIR: BlockState = _

The default block state for cave_air.

source

pub const BUBBLE_COLUMN: BlockState = _

The default block state for bubble_column.

source

pub const POLISHED_GRANITE_STAIRS: BlockState = _

The default block state for polished_granite_stairs.

source

pub const SMOOTH_RED_SANDSTONE_STAIRS: BlockState = _

The default block state for smooth_red_sandstone_stairs.

source

pub const MOSSY_STONE_BRICK_STAIRS: BlockState = _

The default block state for mossy_stone_brick_stairs.

source

pub const POLISHED_DIORITE_STAIRS: BlockState = _

The default block state for polished_diorite_stairs.

source

pub const MOSSY_COBBLESTONE_STAIRS: BlockState = _

The default block state for mossy_cobblestone_stairs.

source

pub const END_STONE_BRICK_STAIRS: BlockState = _

The default block state for end_stone_brick_stairs.

source

pub const STONE_STAIRS: BlockState = _

The default block state for stone_stairs.

source

pub const SMOOTH_SANDSTONE_STAIRS: BlockState = _

The default block state for smooth_sandstone_stairs.

source

pub const SMOOTH_QUARTZ_STAIRS: BlockState = _

The default block state for smooth_quartz_stairs.

source

pub const GRANITE_STAIRS: BlockState = _

The default block state for granite_stairs.

source

pub const ANDESITE_STAIRS: BlockState = _

The default block state for andesite_stairs.

source

pub const RED_NETHER_BRICK_STAIRS: BlockState = _

The default block state for red_nether_brick_stairs.

source

pub const POLISHED_ANDESITE_STAIRS: BlockState = _

The default block state for polished_andesite_stairs.

source

pub const DIORITE_STAIRS: BlockState = _

The default block state for diorite_stairs.

source

pub const POLISHED_GRANITE_SLAB: BlockState = _

The default block state for polished_granite_slab.

source

pub const SMOOTH_RED_SANDSTONE_SLAB: BlockState = _

The default block state for smooth_red_sandstone_slab.

source

pub const MOSSY_STONE_BRICK_SLAB: BlockState = _

The default block state for mossy_stone_brick_slab.

source

pub const POLISHED_DIORITE_SLAB: BlockState = _

The default block state for polished_diorite_slab.

source

pub const MOSSY_COBBLESTONE_SLAB: BlockState = _

The default block state for mossy_cobblestone_slab.

source

pub const END_STONE_BRICK_SLAB: BlockState = _

The default block state for end_stone_brick_slab.

source

pub const SMOOTH_SANDSTONE_SLAB: BlockState = _

The default block state for smooth_sandstone_slab.

source

pub const SMOOTH_QUARTZ_SLAB: BlockState = _

The default block state for smooth_quartz_slab.

source

pub const GRANITE_SLAB: BlockState = _

The default block state for granite_slab.

source

pub const ANDESITE_SLAB: BlockState = _

The default block state for andesite_slab.

source

pub const RED_NETHER_BRICK_SLAB: BlockState = _

The default block state for red_nether_brick_slab.

source

pub const POLISHED_ANDESITE_SLAB: BlockState = _

The default block state for polished_andesite_slab.

source

pub const DIORITE_SLAB: BlockState = _

The default block state for diorite_slab.

source

pub const BRICK_WALL: BlockState = _

The default block state for brick_wall.

source

pub const PRISMARINE_WALL: BlockState = _

The default block state for prismarine_wall.

source

pub const RED_SANDSTONE_WALL: BlockState = _

The default block state for red_sandstone_wall.

source

pub const MOSSY_STONE_BRICK_WALL: BlockState = _

The default block state for mossy_stone_brick_wall.

source

pub const GRANITE_WALL: BlockState = _

The default block state for granite_wall.

source

pub const STONE_BRICK_WALL: BlockState = _

The default block state for stone_brick_wall.

source

pub const MUD_BRICK_WALL: BlockState = _

The default block state for mud_brick_wall.

source

pub const NETHER_BRICK_WALL: BlockState = _

The default block state for nether_brick_wall.

source

pub const ANDESITE_WALL: BlockState = _

The default block state for andesite_wall.

source

pub const RED_NETHER_BRICK_WALL: BlockState = _

The default block state for red_nether_brick_wall.

source

pub const SANDSTONE_WALL: BlockState = _

The default block state for sandstone_wall.

source

pub const END_STONE_BRICK_WALL: BlockState = _

The default block state for end_stone_brick_wall.

source

pub const DIORITE_WALL: BlockState = _

The default block state for diorite_wall.

source

pub const SCAFFOLDING: BlockState = _

The default block state for scaffolding.

source

pub const LOOM: BlockState = _

The default block state for loom.

source

pub const BARREL: BlockState = _

The default block state for barrel.

source

pub const SMOKER: BlockState = _

The default block state for smoker.

source

pub const BLAST_FURNACE: BlockState = _

The default block state for blast_furnace.

source

pub const CARTOGRAPHY_TABLE: BlockState = _

The default block state for cartography_table.

source

pub const FLETCHING_TABLE: BlockState = _

The default block state for fletching_table.

source

pub const GRINDSTONE: BlockState = _

The default block state for grindstone.

source

pub const LECTERN: BlockState = _

The default block state for lectern.

source

pub const SMITHING_TABLE: BlockState = _

The default block state for smithing_table.

source

pub const STONECUTTER: BlockState = _

The default block state for stonecutter.

source

pub const BELL: BlockState = _

The default block state for bell.

source

pub const LANTERN: BlockState = _

The default block state for lantern.

source

pub const SOUL_LANTERN: BlockState = _

The default block state for soul_lantern.

source

pub const CAMPFIRE: BlockState = _

The default block state for campfire.

source

pub const SOUL_CAMPFIRE: BlockState = _

The default block state for soul_campfire.

source

pub const SWEET_BERRY_BUSH: BlockState = _

The default block state for sweet_berry_bush.

source

pub const WARPED_STEM: BlockState = _

The default block state for warped_stem.

source

pub const STRIPPED_WARPED_STEM: BlockState = _

The default block state for stripped_warped_stem.

source

pub const WARPED_HYPHAE: BlockState = _

The default block state for warped_hyphae.

source

pub const STRIPPED_WARPED_HYPHAE: BlockState = _

The default block state for stripped_warped_hyphae.

source

pub const WARPED_NYLIUM: BlockState = _

The default block state for warped_nylium.

source

pub const WARPED_FUNGUS: BlockState = _

The default block state for warped_fungus.

source

pub const WARPED_WART_BLOCK: BlockState = _

The default block state for warped_wart_block.

source

pub const WARPED_ROOTS: BlockState = _

The default block state for warped_roots.

source

pub const NETHER_SPROUTS: BlockState = _

The default block state for nether_sprouts.

source

pub const CRIMSON_STEM: BlockState = _

The default block state for crimson_stem.

source

pub const STRIPPED_CRIMSON_STEM: BlockState = _

The default block state for stripped_crimson_stem.

source

pub const CRIMSON_HYPHAE: BlockState = _

The default block state for crimson_hyphae.

source

pub const STRIPPED_CRIMSON_HYPHAE: BlockState = _

The default block state for stripped_crimson_hyphae.

source

pub const CRIMSON_NYLIUM: BlockState = _

The default block state for crimson_nylium.

source

pub const CRIMSON_FUNGUS: BlockState = _

The default block state for crimson_fungus.

source

pub const SHROOMLIGHT: BlockState = _

The default block state for shroomlight.

source

pub const WEEPING_VINES: BlockState = _

The default block state for weeping_vines.

source

pub const WEEPING_VINES_PLANT: BlockState = _

The default block state for weeping_vines_plant.

source

pub const TWISTING_VINES: BlockState = _

The default block state for twisting_vines.

source

pub const TWISTING_VINES_PLANT: BlockState = _

The default block state for twisting_vines_plant.

source

pub const CRIMSON_ROOTS: BlockState = _

The default block state for crimson_roots.

source

pub const CRIMSON_PLANKS: BlockState = _

The default block state for crimson_planks.

source

pub const WARPED_PLANKS: BlockState = _

The default block state for warped_planks.

source

pub const CRIMSON_SLAB: BlockState = _

The default block state for crimson_slab.

source

pub const WARPED_SLAB: BlockState = _

The default block state for warped_slab.

source

pub const CRIMSON_PRESSURE_PLATE: BlockState = _

The default block state for crimson_pressure_plate.

source

pub const WARPED_PRESSURE_PLATE: BlockState = _

The default block state for warped_pressure_plate.

source

pub const CRIMSON_FENCE: BlockState = _

The default block state for crimson_fence.

source

pub const WARPED_FENCE: BlockState = _

The default block state for warped_fence.

source

pub const CRIMSON_TRAPDOOR: BlockState = _

The default block state for crimson_trapdoor.

source

pub const WARPED_TRAPDOOR: BlockState = _

The default block state for warped_trapdoor.

source

pub const CRIMSON_FENCE_GATE: BlockState = _

The default block state for crimson_fence_gate.

source

pub const WARPED_FENCE_GATE: BlockState = _

The default block state for warped_fence_gate.

source

pub const CRIMSON_STAIRS: BlockState = _

The default block state for crimson_stairs.

source

pub const WARPED_STAIRS: BlockState = _

The default block state for warped_stairs.

source

pub const CRIMSON_BUTTON: BlockState = _

The default block state for crimson_button.

source

pub const WARPED_BUTTON: BlockState = _

The default block state for warped_button.

source

pub const CRIMSON_DOOR: BlockState = _

The default block state for crimson_door.

source

pub const WARPED_DOOR: BlockState = _

The default block state for warped_door.

source

pub const CRIMSON_SIGN: BlockState = _

The default block state for crimson_sign.

source

pub const WARPED_SIGN: BlockState = _

The default block state for warped_sign.

source

pub const CRIMSON_WALL_SIGN: BlockState = _

The default block state for crimson_wall_sign.

source

pub const WARPED_WALL_SIGN: BlockState = _

The default block state for warped_wall_sign.

source

pub const STRUCTURE_BLOCK: BlockState = _

The default block state for structure_block.

source

pub const JIGSAW: BlockState = _

The default block state for jigsaw.

source

pub const COMPOSTER: BlockState = _

The default block state for composter.

source

pub const TARGET: BlockState = _

The default block state for target.

source

pub const BEE_NEST: BlockState = _

The default block state for bee_nest.

source

pub const BEEHIVE: BlockState = _

The default block state for beehive.

source

pub const HONEY_BLOCK: BlockState = _

The default block state for honey_block.

source

pub const HONEYCOMB_BLOCK: BlockState = _

The default block state for honeycomb_block.

source

pub const NETHERITE_BLOCK: BlockState = _

The default block state for netherite_block.

source

pub const ANCIENT_DEBRIS: BlockState = _

The default block state for ancient_debris.

source

pub const CRYING_OBSIDIAN: BlockState = _

The default block state for crying_obsidian.

source

pub const RESPAWN_ANCHOR: BlockState = _

The default block state for respawn_anchor.

source

pub const POTTED_CRIMSON_FUNGUS: BlockState = _

The default block state for potted_crimson_fungus.

source

pub const POTTED_WARPED_FUNGUS: BlockState = _

The default block state for potted_warped_fungus.

source

pub const POTTED_CRIMSON_ROOTS: BlockState = _

The default block state for potted_crimson_roots.

source

pub const POTTED_WARPED_ROOTS: BlockState = _

The default block state for potted_warped_roots.

source

pub const LODESTONE: BlockState = _

The default block state for lodestone.

source

pub const BLACKSTONE: BlockState = _

The default block state for blackstone.

source

pub const BLACKSTONE_STAIRS: BlockState = _

The default block state for blackstone_stairs.

source

pub const BLACKSTONE_WALL: BlockState = _

The default block state for blackstone_wall.

source

pub const BLACKSTONE_SLAB: BlockState = _

The default block state for blackstone_slab.

source

pub const POLISHED_BLACKSTONE: BlockState = _

The default block state for polished_blackstone.

source

pub const POLISHED_BLACKSTONE_BRICKS: BlockState = _

The default block state for polished_blackstone_bricks.

source

pub const CRACKED_POLISHED_BLACKSTONE_BRICKS: BlockState = _

The default block state for cracked_polished_blackstone_bricks.

source

pub const CHISELED_POLISHED_BLACKSTONE: BlockState = _

The default block state for chiseled_polished_blackstone.

source

pub const POLISHED_BLACKSTONE_BRICK_SLAB: BlockState = _

The default block state for polished_blackstone_brick_slab.

source

pub const POLISHED_BLACKSTONE_BRICK_STAIRS: BlockState = _

The default block state for polished_blackstone_brick_stairs.

source

pub const POLISHED_BLACKSTONE_BRICK_WALL: BlockState = _

The default block state for polished_blackstone_brick_wall.

source

pub const GILDED_BLACKSTONE: BlockState = _

The default block state for gilded_blackstone.

source

pub const POLISHED_BLACKSTONE_STAIRS: BlockState = _

The default block state for polished_blackstone_stairs.

source

pub const POLISHED_BLACKSTONE_SLAB: BlockState = _

The default block state for polished_blackstone_slab.

source

pub const POLISHED_BLACKSTONE_PRESSURE_PLATE: BlockState = _

The default block state for polished_blackstone_pressure_plate.

source

pub const POLISHED_BLACKSTONE_BUTTON: BlockState = _

The default block state for polished_blackstone_button.

source

pub const POLISHED_BLACKSTONE_WALL: BlockState = _

The default block state for polished_blackstone_wall.

source

pub const CHISELED_NETHER_BRICKS: BlockState = _

The default block state for chiseled_nether_bricks.

source

pub const CRACKED_NETHER_BRICKS: BlockState = _

The default block state for cracked_nether_bricks.

source

pub const QUARTZ_BRICKS: BlockState = _

The default block state for quartz_bricks.

source

pub const CANDLE: BlockState = _

The default block state for candle.

source

pub const WHITE_CANDLE: BlockState = _

The default block state for white_candle.

source

pub const ORANGE_CANDLE: BlockState = _

The default block state for orange_candle.

source

pub const MAGENTA_CANDLE: BlockState = _

The default block state for magenta_candle.

source

pub const LIGHT_BLUE_CANDLE: BlockState = _

The default block state for light_blue_candle.

source

pub const YELLOW_CANDLE: BlockState = _

The default block state for yellow_candle.

source

pub const LIME_CANDLE: BlockState = _

The default block state for lime_candle.

source

pub const PINK_CANDLE: BlockState = _

The default block state for pink_candle.

source

pub const GRAY_CANDLE: BlockState = _

The default block state for gray_candle.

source

pub const LIGHT_GRAY_CANDLE: BlockState = _

The default block state for light_gray_candle.

source

pub const CYAN_CANDLE: BlockState = _

The default block state for cyan_candle.

source

pub const PURPLE_CANDLE: BlockState = _

The default block state for purple_candle.

source

pub const BLUE_CANDLE: BlockState = _

The default block state for blue_candle.

source

pub const BROWN_CANDLE: BlockState = _

The default block state for brown_candle.

source

pub const GREEN_CANDLE: BlockState = _

The default block state for green_candle.

source

pub const RED_CANDLE: BlockState = _

The default block state for red_candle.

source

pub const BLACK_CANDLE: BlockState = _

The default block state for black_candle.

source

pub const CANDLE_CAKE: BlockState = _

The default block state for candle_cake.

source

pub const WHITE_CANDLE_CAKE: BlockState = _

The default block state for white_candle_cake.

source

pub const ORANGE_CANDLE_CAKE: BlockState = _

The default block state for orange_candle_cake.

source

pub const MAGENTA_CANDLE_CAKE: BlockState = _

The default block state for magenta_candle_cake.

source

pub const LIGHT_BLUE_CANDLE_CAKE: BlockState = _

The default block state for light_blue_candle_cake.

source

pub const YELLOW_CANDLE_CAKE: BlockState = _

The default block state for yellow_candle_cake.

source

pub const LIME_CANDLE_CAKE: BlockState = _

The default block state for lime_candle_cake.

source

pub const PINK_CANDLE_CAKE: BlockState = _

The default block state for pink_candle_cake.

source

pub const GRAY_CANDLE_CAKE: BlockState = _

The default block state for gray_candle_cake.

source

pub const LIGHT_GRAY_CANDLE_CAKE: BlockState = _

The default block state for light_gray_candle_cake.

source

pub const CYAN_CANDLE_CAKE: BlockState = _

The default block state for cyan_candle_cake.

source

pub const PURPLE_CANDLE_CAKE: BlockState = _

The default block state for purple_candle_cake.

source

pub const BLUE_CANDLE_CAKE: BlockState = _

The default block state for blue_candle_cake.

source

pub const BROWN_CANDLE_CAKE: BlockState = _

The default block state for brown_candle_cake.

source

pub const GREEN_CANDLE_CAKE: BlockState = _

The default block state for green_candle_cake.

source

pub const RED_CANDLE_CAKE: BlockState = _

The default block state for red_candle_cake.

source

pub const BLACK_CANDLE_CAKE: BlockState = _

The default block state for black_candle_cake.

source

pub const AMETHYST_BLOCK: BlockState = _

The default block state for amethyst_block.

source

pub const BUDDING_AMETHYST: BlockState = _

The default block state for budding_amethyst.

source

pub const AMETHYST_CLUSTER: BlockState = _

The default block state for amethyst_cluster.

source

pub const LARGE_AMETHYST_BUD: BlockState = _

The default block state for large_amethyst_bud.

source

pub const MEDIUM_AMETHYST_BUD: BlockState = _

The default block state for medium_amethyst_bud.

source

pub const SMALL_AMETHYST_BUD: BlockState = _

The default block state for small_amethyst_bud.

source

pub const TUFF: BlockState = _

The default block state for tuff.

source

pub const CALCITE: BlockState = _

The default block state for calcite.

source

pub const TINTED_GLASS: BlockState = _

The default block state for tinted_glass.

source

pub const POWDER_SNOW: BlockState = _

The default block state for powder_snow.

source

pub const SCULK_SENSOR: BlockState = _

The default block state for sculk_sensor.

source

pub const CALIBRATED_SCULK_SENSOR: BlockState = _

The default block state for calibrated_sculk_sensor.

source

pub const SCULK: BlockState = _

The default block state for sculk.

source

pub const SCULK_VEIN: BlockState = _

The default block state for sculk_vein.

source

pub const SCULK_CATALYST: BlockState = _

The default block state for sculk_catalyst.

source

pub const SCULK_SHRIEKER: BlockState = _

The default block state for sculk_shrieker.

source

pub const OXIDIZED_COPPER: BlockState = _

The default block state for oxidized_copper.

source

pub const WEATHERED_COPPER: BlockState = _

The default block state for weathered_copper.

source

pub const EXPOSED_COPPER: BlockState = _

The default block state for exposed_copper.

source

pub const COPPER_BLOCK: BlockState = _

The default block state for copper_block.

source

pub const COPPER_ORE: BlockState = _

The default block state for copper_ore.

source

pub const DEEPSLATE_COPPER_ORE: BlockState = _

The default block state for deepslate_copper_ore.

source

pub const OXIDIZED_CUT_COPPER: BlockState = _

The default block state for oxidized_cut_copper.

source

pub const WEATHERED_CUT_COPPER: BlockState = _

The default block state for weathered_cut_copper.

source

pub const EXPOSED_CUT_COPPER: BlockState = _

The default block state for exposed_cut_copper.

source

pub const CUT_COPPER: BlockState = _

The default block state for cut_copper.

source

pub const OXIDIZED_CUT_COPPER_STAIRS: BlockState = _

The default block state for oxidized_cut_copper_stairs.

source

pub const WEATHERED_CUT_COPPER_STAIRS: BlockState = _

The default block state for weathered_cut_copper_stairs.

source

pub const EXPOSED_CUT_COPPER_STAIRS: BlockState = _

The default block state for exposed_cut_copper_stairs.

source

pub const CUT_COPPER_STAIRS: BlockState = _

The default block state for cut_copper_stairs.

source

pub const OXIDIZED_CUT_COPPER_SLAB: BlockState = _

The default block state for oxidized_cut_copper_slab.

source

pub const WEATHERED_CUT_COPPER_SLAB: BlockState = _

The default block state for weathered_cut_copper_slab.

source

pub const EXPOSED_CUT_COPPER_SLAB: BlockState = _

The default block state for exposed_cut_copper_slab.

source

pub const CUT_COPPER_SLAB: BlockState = _

The default block state for cut_copper_slab.

source

pub const WAXED_COPPER_BLOCK: BlockState = _

The default block state for waxed_copper_block.

source

pub const WAXED_WEATHERED_COPPER: BlockState = _

The default block state for waxed_weathered_copper.

source

pub const WAXED_EXPOSED_COPPER: BlockState = _

The default block state for waxed_exposed_copper.

source

pub const WAXED_OXIDIZED_COPPER: BlockState = _

The default block state for waxed_oxidized_copper.

source

pub const WAXED_OXIDIZED_CUT_COPPER: BlockState = _

The default block state for waxed_oxidized_cut_copper.

source

pub const WAXED_WEATHERED_CUT_COPPER: BlockState = _

The default block state for waxed_weathered_cut_copper.

source

pub const WAXED_EXPOSED_CUT_COPPER: BlockState = _

The default block state for waxed_exposed_cut_copper.

source

pub const WAXED_CUT_COPPER: BlockState = _

The default block state for waxed_cut_copper.

source

pub const WAXED_OXIDIZED_CUT_COPPER_STAIRS: BlockState = _

The default block state for waxed_oxidized_cut_copper_stairs.

source

pub const WAXED_WEATHERED_CUT_COPPER_STAIRS: BlockState = _

The default block state for waxed_weathered_cut_copper_stairs.

source

pub const WAXED_EXPOSED_CUT_COPPER_STAIRS: BlockState = _

The default block state for waxed_exposed_cut_copper_stairs.

source

pub const WAXED_CUT_COPPER_STAIRS: BlockState = _

The default block state for waxed_cut_copper_stairs.

source

pub const WAXED_OXIDIZED_CUT_COPPER_SLAB: BlockState = _

The default block state for waxed_oxidized_cut_copper_slab.

source

pub const WAXED_WEATHERED_CUT_COPPER_SLAB: BlockState = _

The default block state for waxed_weathered_cut_copper_slab.

source

pub const WAXED_EXPOSED_CUT_COPPER_SLAB: BlockState = _

The default block state for waxed_exposed_cut_copper_slab.

source

pub const WAXED_CUT_COPPER_SLAB: BlockState = _

The default block state for waxed_cut_copper_slab.

source

pub const LIGHTNING_ROD: BlockState = _

The default block state for lightning_rod.

source

pub const POINTED_DRIPSTONE: BlockState = _

The default block state for pointed_dripstone.

source

pub const DRIPSTONE_BLOCK: BlockState = _

The default block state for dripstone_block.

source

pub const CAVE_VINES: BlockState = _

The default block state for cave_vines.

source

pub const CAVE_VINES_PLANT: BlockState = _

The default block state for cave_vines_plant.

source

pub const SPORE_BLOSSOM: BlockState = _

The default block state for spore_blossom.

source

pub const AZALEA: BlockState = _

The default block state for azalea.

source

pub const FLOWERING_AZALEA: BlockState = _

The default block state for flowering_azalea.

source

pub const MOSS_CARPET: BlockState = _

The default block state for moss_carpet.

source

pub const PINK_PETALS: BlockState = _

The default block state for pink_petals.

source

pub const MOSS_BLOCK: BlockState = _

The default block state for moss_block.

source

pub const BIG_DRIPLEAF: BlockState = _

The default block state for big_dripleaf.

source

pub const BIG_DRIPLEAF_STEM: BlockState = _

The default block state for big_dripleaf_stem.

source

pub const SMALL_DRIPLEAF: BlockState = _

The default block state for small_dripleaf.

source

pub const HANGING_ROOTS: BlockState = _

The default block state for hanging_roots.

source

pub const ROOTED_DIRT: BlockState = _

The default block state for rooted_dirt.

source

pub const MUD: BlockState = _

The default block state for mud.

source

pub const DEEPSLATE: BlockState = _

The default block state for deepslate.

source

pub const COBBLED_DEEPSLATE: BlockState = _

The default block state for cobbled_deepslate.

source

pub const COBBLED_DEEPSLATE_STAIRS: BlockState = _

The default block state for cobbled_deepslate_stairs.

source

pub const COBBLED_DEEPSLATE_SLAB: BlockState = _

The default block state for cobbled_deepslate_slab.

source

pub const COBBLED_DEEPSLATE_WALL: BlockState = _

The default block state for cobbled_deepslate_wall.

source

pub const POLISHED_DEEPSLATE: BlockState = _

The default block state for polished_deepslate.

source

pub const POLISHED_DEEPSLATE_STAIRS: BlockState = _

The default block state for polished_deepslate_stairs.

source

pub const POLISHED_DEEPSLATE_SLAB: BlockState = _

The default block state for polished_deepslate_slab.

source

pub const POLISHED_DEEPSLATE_WALL: BlockState = _

The default block state for polished_deepslate_wall.

source

pub const DEEPSLATE_TILES: BlockState = _

The default block state for deepslate_tiles.

source

pub const DEEPSLATE_TILE_STAIRS: BlockState = _

The default block state for deepslate_tile_stairs.

source

pub const DEEPSLATE_TILE_SLAB: BlockState = _

The default block state for deepslate_tile_slab.

source

pub const DEEPSLATE_TILE_WALL: BlockState = _

The default block state for deepslate_tile_wall.

source

pub const DEEPSLATE_BRICKS: BlockState = _

The default block state for deepslate_bricks.

source

pub const DEEPSLATE_BRICK_STAIRS: BlockState = _

The default block state for deepslate_brick_stairs.

source

pub const DEEPSLATE_BRICK_SLAB: BlockState = _

The default block state for deepslate_brick_slab.

source

pub const DEEPSLATE_BRICK_WALL: BlockState = _

The default block state for deepslate_brick_wall.

source

pub const CHISELED_DEEPSLATE: BlockState = _

The default block state for chiseled_deepslate.

source

pub const CRACKED_DEEPSLATE_BRICKS: BlockState = _

The default block state for cracked_deepslate_bricks.

source

pub const CRACKED_DEEPSLATE_TILES: BlockState = _

The default block state for cracked_deepslate_tiles.

source

pub const INFESTED_DEEPSLATE: BlockState = _

The default block state for infested_deepslate.

source

pub const SMOOTH_BASALT: BlockState = _

The default block state for smooth_basalt.

source

pub const RAW_IRON_BLOCK: BlockState = _

The default block state for raw_iron_block.

source

pub const RAW_COPPER_BLOCK: BlockState = _

The default block state for raw_copper_block.

source

pub const RAW_GOLD_BLOCK: BlockState = _

The default block state for raw_gold_block.

source

pub const POTTED_AZALEA_BUSH: BlockState = _

The default block state for potted_azalea_bush.

source

pub const POTTED_FLOWERING_AZALEA_BUSH: BlockState = _

The default block state for potted_flowering_azalea_bush.

source

pub const OCHRE_FROGLIGHT: BlockState = _

The default block state for ochre_froglight.

source

pub const VERDANT_FROGLIGHT: BlockState = _

The default block state for verdant_froglight.

source

pub const PEARLESCENT_FROGLIGHT: BlockState = _

The default block state for pearlescent_froglight.

source

pub const FROGSPAWN: BlockState = _

The default block state for frogspawn.

source

pub const REINFORCED_DEEPSLATE: BlockState = _

The default block state for reinforced_deepslate.

source

pub const DECORATED_POT: BlockState = _

The default block state for decorated_pot.

Trait Implementations§

source§

impl Clone for BlockState

source§

fn clone(&self) -> BlockState

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 BlockState

source§

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

Formats the value using the given formatter. Read more
§

impl Decode<'_> for BlockState

§

fn decode(r: &mut &[u8]) -> Result<BlockState, Error>

Reads this object from the provided byte slice. Read more
source§

impl Default for BlockState

source§

fn default() -> BlockState

Returns the “default value” for a type. Read more
source§

impl Display for BlockState

source§

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

Formats the value using the given formatter. Read more
§

impl Encode for BlockState

§

fn encode(&self, w: impl Write) -> Result<(), Error>

Writes this object to the provided writer. Read more
§

fn encode_slice(slice: &[Self], w: impl Write) -> Result<(), Error>
where Self: Sized,

Like Encode::encode, except that a whole slice of values is encoded. Read more
source§

impl Hash for BlockState

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl IntoBlock for BlockState

This will initialize the block with a new empty compound if the block state is associated with a block entity.

source§

impl Ord for BlockState

source§

fn cmp(&self, other: &BlockState) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for BlockState

source§

fn eq(&self, other: &BlockState) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for BlockState

source§

fn partial_cmp(&self, other: &BlockState) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for BlockState

source§

impl Eq for BlockState

source§

impl StructuralPartialEq for BlockState

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
§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
§

impl<T> Conv for T

§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
§

impl<T> DynEq for T
where T: Any + Eq,

§

fn as_any(&self) -> &(dyn Any + 'static)

Casts the type to dyn Any.
§

fn dyn_eq(&self, other: &(dyn DynEq + 'static)) -> bool

This method tests for self and other values to be equal. Read more
§

impl<T> DynHash for T
where T: DynEq + Hash,

§

fn as_dyn_eq(&self) -> &(dyn DynEq + 'static)

Casts the type to dyn Any.
§

fn dyn_hash(&self, state: &mut dyn Hasher)

Feeds this value into the given Hasher.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
§

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
§

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
§

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromWorld for T
where T: Default,

§

fn from_world(_world: &mut World) -> T

Creates Self using data from the given World.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.

§

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

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R, ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
source§

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

§

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
§

impl<T> ToSmolStr for T
where T: Display + ?Sized,

§

fn to_smolstr(&self) -> SmolStr

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
source§

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

§

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>,

§

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.
§

impl<T> TypeData for T
where T: 'static + Send + Sync + Clone,

§

fn clone_type_data(&self) -> Box<dyn TypeData>

§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<N> NodeTrait for N
where N: Copy + Ord + Hash,