pub struct BlockState {
pub id: BlockStateIntegerRepr,
}
Expand description
A representation of a state a block can be in.
For example, a stone block only has one state but each possible stair rotation is a different state.
Note that this type is internally either a u16
or u32
, depending on
BlockStateIntegerRepr
.
Fields§
§id: BlockStateIntegerRepr
The protocol ID for the block state. IDs may change every version, so you shouldn’t hard-code them or store them in databases.
Implementations§
Source§impl BlockState
impl BlockState
Sourcepub const AIR: BlockState
pub const AIR: BlockState
A shortcut for getting the air block state, since it always has an ID of 0.
Sourcepub fn is_valid_state(state_id: BlockStateIntegerRepr) -> bool
pub fn is_valid_state(state_id: BlockStateIntegerRepr) -> bool
Whether the block state is possible to exist in vanilla Minecraft.
It’s equivalent to checking that the state ID is not greater than
Self::MAX_STATE
.
Source§impl BlockState
impl BlockState
Sourcepub const MAX_STATE: BlockStateIntegerRepr = 27_865u16
pub const MAX_STATE: BlockStateIntegerRepr = 27_865u16
The highest possible block state ID.
Sourcepub fn property<P: Property>(self) -> Option<P::Value>
pub fn property<P: Property>(self) -> Option<P::Value>
Get a property from this block state. Will be None
if the block can’t have the property.
fn is_waterlogged(block_state: azalea_block::BlockState) -> bool {
block_state.property::<azalea_block::properties::Waterlogged>().unwrap_or_default()
}
Trait Implementations§
Source§impl AzaleaRead for BlockState
impl AzaleaRead for BlockState
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
Source§impl AzaleaWrite for BlockState
impl AzaleaWrite for BlockState
Source§impl Clone for BlockState
impl Clone for BlockState
Source§fn clone(&self) -> BlockState
fn clone(&self) -> BlockState
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BlockState
impl Debug for BlockState
Source§impl Default for BlockState
impl Default for BlockState
Source§fn default() -> BlockState
fn default() -> BlockState
Returns the “default value” for a type. Read more
Source§impl From<AcaciaButton> for BlockState
impl From<AcaciaButton> for BlockState
Source§fn from(b: AcaciaButton) -> Self
fn from(b: AcaciaButton) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaDoor> for BlockState
impl From<AcaciaDoor> for BlockState
Source§fn from(b: AcaciaDoor) -> Self
fn from(b: AcaciaDoor) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaFence> for BlockState
impl From<AcaciaFence> for BlockState
Source§fn from(b: AcaciaFence) -> Self
fn from(b: AcaciaFence) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaFenceGate> for BlockState
impl From<AcaciaFenceGate> for BlockState
Source§fn from(b: AcaciaFenceGate) -> Self
fn from(b: AcaciaFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaHangingSign> for BlockState
impl From<AcaciaHangingSign> for BlockState
Source§fn from(b: AcaciaHangingSign) -> Self
fn from(b: AcaciaHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaLeaves> for BlockState
impl From<AcaciaLeaves> for BlockState
Source§fn from(b: AcaciaLeaves) -> Self
fn from(b: AcaciaLeaves) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaLog> for BlockState
impl From<AcaciaLog> for BlockState
Source§impl From<AcaciaPlanks> for BlockState
impl From<AcaciaPlanks> for BlockState
Source§fn from(b: AcaciaPlanks) -> Self
fn from(b: AcaciaPlanks) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaPressurePlate> for BlockState
impl From<AcaciaPressurePlate> for BlockState
Source§fn from(b: AcaciaPressurePlate) -> Self
fn from(b: AcaciaPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaSapling> for BlockState
impl From<AcaciaSapling> for BlockState
Source§fn from(b: AcaciaSapling) -> Self
fn from(b: AcaciaSapling) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaSign> for BlockState
impl From<AcaciaSign> for BlockState
Source§fn from(b: AcaciaSign) -> Self
fn from(b: AcaciaSign) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaSlab> for BlockState
impl From<AcaciaSlab> for BlockState
Source§fn from(b: AcaciaSlab) -> Self
fn from(b: AcaciaSlab) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaStairs> for BlockState
impl From<AcaciaStairs> for BlockState
Source§fn from(b: AcaciaStairs) -> Self
fn from(b: AcaciaStairs) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaTrapdoor> for BlockState
impl From<AcaciaTrapdoor> for BlockState
Source§fn from(b: AcaciaTrapdoor) -> Self
fn from(b: AcaciaTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaWallHangingSign> for BlockState
impl From<AcaciaWallHangingSign> for BlockState
Source§fn from(b: AcaciaWallHangingSign) -> Self
fn from(b: AcaciaWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaWallSign> for BlockState
impl From<AcaciaWallSign> for BlockState
Source§fn from(b: AcaciaWallSign) -> Self
fn from(b: AcaciaWallSign) -> Self
Converts to this type from the input type.
Source§impl From<AcaciaWood> for BlockState
impl From<AcaciaWood> for BlockState
Source§fn from(b: AcaciaWood) -> Self
fn from(b: AcaciaWood) -> Self
Converts to this type from the input type.
Source§impl From<ActivatorRail> for BlockState
impl From<ActivatorRail> for BlockState
Source§fn from(b: ActivatorRail) -> Self
fn from(b: ActivatorRail) -> Self
Converts to this type from the input type.
Source§impl From<Air> for BlockState
impl From<Air> for BlockState
Source§impl From<Allium> for BlockState
impl From<Allium> for BlockState
Source§impl From<AmethystBlock> for BlockState
impl From<AmethystBlock> for BlockState
Source§fn from(b: AmethystBlock) -> Self
fn from(b: AmethystBlock) -> Self
Converts to this type from the input type.
Source§impl From<AmethystCluster> for BlockState
impl From<AmethystCluster> for BlockState
Source§fn from(b: AmethystCluster) -> Self
fn from(b: AmethystCluster) -> Self
Converts to this type from the input type.
Source§impl From<AncientDebris> for BlockState
impl From<AncientDebris> for BlockState
Source§fn from(b: AncientDebris) -> Self
fn from(b: AncientDebris) -> Self
Converts to this type from the input type.
Source§impl From<Andesite> for BlockState
impl From<Andesite> for BlockState
Source§impl From<AndesiteSlab> for BlockState
impl From<AndesiteSlab> for BlockState
Source§fn from(b: AndesiteSlab) -> Self
fn from(b: AndesiteSlab) -> Self
Converts to this type from the input type.
Source§impl From<AndesiteStairs> for BlockState
impl From<AndesiteStairs> for BlockState
Source§fn from(b: AndesiteStairs) -> Self
fn from(b: AndesiteStairs) -> Self
Converts to this type from the input type.
Source§impl From<AndesiteWall> for BlockState
impl From<AndesiteWall> for BlockState
Source§fn from(b: AndesiteWall) -> Self
fn from(b: AndesiteWall) -> Self
Converts to this type from the input type.
Source§impl From<Anvil> for BlockState
impl From<Anvil> for BlockState
Source§impl From<AttachedMelonStem> for BlockState
impl From<AttachedMelonStem> for BlockState
Source§fn from(b: AttachedMelonStem) -> Self
fn from(b: AttachedMelonStem) -> Self
Converts to this type from the input type.
Source§impl From<AttachedPumpkinStem> for BlockState
impl From<AttachedPumpkinStem> for BlockState
Source§fn from(b: AttachedPumpkinStem) -> Self
fn from(b: AttachedPumpkinStem) -> Self
Converts to this type from the input type.
Source§impl From<Azalea> for BlockState
impl From<Azalea> for BlockState
Source§impl From<AzaleaLeaves> for BlockState
impl From<AzaleaLeaves> for BlockState
Source§fn from(b: AzaleaLeaves) -> Self
fn from(b: AzaleaLeaves) -> Self
Converts to this type from the input type.
Source§impl From<AzureBluet> for BlockState
impl From<AzureBluet> for BlockState
Source§fn from(b: AzureBluet) -> Self
fn from(b: AzureBluet) -> Self
Converts to this type from the input type.
Source§impl From<Bamboo> for BlockState
impl From<Bamboo> for BlockState
Source§impl From<BambooBlock> for BlockState
impl From<BambooBlock> for BlockState
Source§fn from(b: BambooBlock) -> Self
fn from(b: BambooBlock) -> Self
Converts to this type from the input type.
Source§impl From<BambooButton> for BlockState
impl From<BambooButton> for BlockState
Source§fn from(b: BambooButton) -> Self
fn from(b: BambooButton) -> Self
Converts to this type from the input type.
Source§impl From<BambooDoor> for BlockState
impl From<BambooDoor> for BlockState
Source§fn from(b: BambooDoor) -> Self
fn from(b: BambooDoor) -> Self
Converts to this type from the input type.
Source§impl From<BambooFence> for BlockState
impl From<BambooFence> for BlockState
Source§fn from(b: BambooFence) -> Self
fn from(b: BambooFence) -> Self
Converts to this type from the input type.
Source§impl From<BambooFenceGate> for BlockState
impl From<BambooFenceGate> for BlockState
Source§fn from(b: BambooFenceGate) -> Self
fn from(b: BambooFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<BambooHangingSign> for BlockState
impl From<BambooHangingSign> for BlockState
Source§fn from(b: BambooHangingSign) -> Self
fn from(b: BambooHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<BambooMosaic> for BlockState
impl From<BambooMosaic> for BlockState
Source§fn from(b: BambooMosaic) -> Self
fn from(b: BambooMosaic) -> Self
Converts to this type from the input type.
Source§impl From<BambooMosaicSlab> for BlockState
impl From<BambooMosaicSlab> for BlockState
Source§fn from(b: BambooMosaicSlab) -> Self
fn from(b: BambooMosaicSlab) -> Self
Converts to this type from the input type.
Source§impl From<BambooMosaicStairs> for BlockState
impl From<BambooMosaicStairs> for BlockState
Source§fn from(b: BambooMosaicStairs) -> Self
fn from(b: BambooMosaicStairs) -> Self
Converts to this type from the input type.
Source§impl From<BambooPlanks> for BlockState
impl From<BambooPlanks> for BlockState
Source§fn from(b: BambooPlanks) -> Self
fn from(b: BambooPlanks) -> Self
Converts to this type from the input type.
Source§impl From<BambooPressurePlate> for BlockState
impl From<BambooPressurePlate> for BlockState
Source§fn from(b: BambooPressurePlate) -> Self
fn from(b: BambooPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<BambooSapling> for BlockState
impl From<BambooSapling> for BlockState
Source§fn from(b: BambooSapling) -> Self
fn from(b: BambooSapling) -> Self
Converts to this type from the input type.
Source§impl From<BambooSign> for BlockState
impl From<BambooSign> for BlockState
Source§fn from(b: BambooSign) -> Self
fn from(b: BambooSign) -> Self
Converts to this type from the input type.
Source§impl From<BambooSlab> for BlockState
impl From<BambooSlab> for BlockState
Source§fn from(b: BambooSlab) -> Self
fn from(b: BambooSlab) -> Self
Converts to this type from the input type.
Source§impl From<BambooStairs> for BlockState
impl From<BambooStairs> for BlockState
Source§fn from(b: BambooStairs) -> Self
fn from(b: BambooStairs) -> Self
Converts to this type from the input type.
Source§impl From<BambooTrapdoor> for BlockState
impl From<BambooTrapdoor> for BlockState
Source§fn from(b: BambooTrapdoor) -> Self
fn from(b: BambooTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<BambooWallHangingSign> for BlockState
impl From<BambooWallHangingSign> for BlockState
Source§fn from(b: BambooWallHangingSign) -> Self
fn from(b: BambooWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<BambooWallSign> for BlockState
impl From<BambooWallSign> for BlockState
Source§fn from(b: BambooWallSign) -> Self
fn from(b: BambooWallSign) -> Self
Converts to this type from the input type.
Source§impl From<Barrel> for BlockState
impl From<Barrel> for BlockState
Source§impl From<Barrier> for BlockState
impl From<Barrier> for BlockState
Source§impl From<Basalt> for BlockState
impl From<Basalt> for BlockState
Source§impl From<Beacon> for BlockState
impl From<Beacon> for BlockState
Source§impl From<Bedrock> for BlockState
impl From<Bedrock> for BlockState
Source§impl From<BeeNest> for BlockState
impl From<BeeNest> for BlockState
Source§impl From<Beehive> for BlockState
impl From<Beehive> for BlockState
Source§impl From<Beetroots> for BlockState
impl From<Beetroots> for BlockState
Source§impl From<Bell> for BlockState
impl From<Bell> for BlockState
Source§impl From<BigDripleaf> for BlockState
impl From<BigDripleaf> for BlockState
Source§fn from(b: BigDripleaf) -> Self
fn from(b: BigDripleaf) -> Self
Converts to this type from the input type.
Source§impl From<BigDripleafStem> for BlockState
impl From<BigDripleafStem> for BlockState
Source§fn from(b: BigDripleafStem) -> Self
fn from(b: BigDripleafStem) -> Self
Converts to this type from the input type.
Source§impl From<BirchButton> for BlockState
impl From<BirchButton> for BlockState
Source§fn from(b: BirchButton) -> Self
fn from(b: BirchButton) -> Self
Converts to this type from the input type.
Source§impl From<BirchDoor> for BlockState
impl From<BirchDoor> for BlockState
Source§impl From<BirchFence> for BlockState
impl From<BirchFence> for BlockState
Source§fn from(b: BirchFence) -> Self
fn from(b: BirchFence) -> Self
Converts to this type from the input type.
Source§impl From<BirchFenceGate> for BlockState
impl From<BirchFenceGate> for BlockState
Source§fn from(b: BirchFenceGate) -> Self
fn from(b: BirchFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<BirchHangingSign> for BlockState
impl From<BirchHangingSign> for BlockState
Source§fn from(b: BirchHangingSign) -> Self
fn from(b: BirchHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<BirchLeaves> for BlockState
impl From<BirchLeaves> for BlockState
Source§fn from(b: BirchLeaves) -> Self
fn from(b: BirchLeaves) -> Self
Converts to this type from the input type.
Source§impl From<BirchLog> for BlockState
impl From<BirchLog> for BlockState
Source§impl From<BirchPlanks> for BlockState
impl From<BirchPlanks> for BlockState
Source§fn from(b: BirchPlanks) -> Self
fn from(b: BirchPlanks) -> Self
Converts to this type from the input type.
Source§impl From<BirchPressurePlate> for BlockState
impl From<BirchPressurePlate> for BlockState
Source§fn from(b: BirchPressurePlate) -> Self
fn from(b: BirchPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<BirchSapling> for BlockState
impl From<BirchSapling> for BlockState
Source§fn from(b: BirchSapling) -> Self
fn from(b: BirchSapling) -> Self
Converts to this type from the input type.
Source§impl From<BirchSign> for BlockState
impl From<BirchSign> for BlockState
Source§impl From<BirchSlab> for BlockState
impl From<BirchSlab> for BlockState
Source§impl From<BirchStairs> for BlockState
impl From<BirchStairs> for BlockState
Source§fn from(b: BirchStairs) -> Self
fn from(b: BirchStairs) -> Self
Converts to this type from the input type.
Source§impl From<BirchTrapdoor> for BlockState
impl From<BirchTrapdoor> for BlockState
Source§fn from(b: BirchTrapdoor) -> Self
fn from(b: BirchTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<BirchWallHangingSign> for BlockState
impl From<BirchWallHangingSign> for BlockState
Source§fn from(b: BirchWallHangingSign) -> Self
fn from(b: BirchWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<BirchWallSign> for BlockState
impl From<BirchWallSign> for BlockState
Source§fn from(b: BirchWallSign) -> Self
fn from(b: BirchWallSign) -> Self
Converts to this type from the input type.
Source§impl From<BirchWood> for BlockState
impl From<BirchWood> for BlockState
Source§impl From<BlackBanner> for BlockState
impl From<BlackBanner> for BlockState
Source§fn from(b: BlackBanner) -> Self
fn from(b: BlackBanner) -> Self
Converts to this type from the input type.
Source§impl From<BlackBed> for BlockState
impl From<BlackBed> for BlockState
Source§impl From<BlackCandle> for BlockState
impl From<BlackCandle> for BlockState
Source§fn from(b: BlackCandle) -> Self
fn from(b: BlackCandle) -> Self
Converts to this type from the input type.
Source§impl From<BlackCandleCake> for BlockState
impl From<BlackCandleCake> for BlockState
Source§fn from(b: BlackCandleCake) -> Self
fn from(b: BlackCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<BlackCarpet> for BlockState
impl From<BlackCarpet> for BlockState
Source§fn from(b: BlackCarpet) -> Self
fn from(b: BlackCarpet) -> Self
Converts to this type from the input type.
Source§impl From<BlackConcrete> for BlockState
impl From<BlackConcrete> for BlockState
Source§fn from(b: BlackConcrete) -> Self
fn from(b: BlackConcrete) -> Self
Converts to this type from the input type.
Source§impl From<BlackConcretePowder> for BlockState
impl From<BlackConcretePowder> for BlockState
Source§fn from(b: BlackConcretePowder) -> Self
fn from(b: BlackConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<BlackGlazedTerracotta> for BlockState
impl From<BlackGlazedTerracotta> for BlockState
Source§fn from(b: BlackGlazedTerracotta) -> Self
fn from(b: BlackGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<BlackShulkerBox> for BlockState
impl From<BlackShulkerBox> for BlockState
Source§fn from(b: BlackShulkerBox) -> Self
fn from(b: BlackShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<BlackStainedGlass> for BlockState
impl From<BlackStainedGlass> for BlockState
Source§fn from(b: BlackStainedGlass) -> Self
fn from(b: BlackStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<BlackStainedGlassPane> for BlockState
impl From<BlackStainedGlassPane> for BlockState
Source§fn from(b: BlackStainedGlassPane) -> Self
fn from(b: BlackStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<BlackTerracotta> for BlockState
impl From<BlackTerracotta> for BlockState
Source§fn from(b: BlackTerracotta) -> Self
fn from(b: BlackTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<BlackWallBanner> for BlockState
impl From<BlackWallBanner> for BlockState
Source§fn from(b: BlackWallBanner) -> Self
fn from(b: BlackWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<BlackWool> for BlockState
impl From<BlackWool> for BlockState
Source§impl From<Blackstone> for BlockState
impl From<Blackstone> for BlockState
Source§fn from(b: Blackstone) -> Self
fn from(b: Blackstone) -> Self
Converts to this type from the input type.
Source§impl From<BlackstoneSlab> for BlockState
impl From<BlackstoneSlab> for BlockState
Source§fn from(b: BlackstoneSlab) -> Self
fn from(b: BlackstoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<BlackstoneStairs> for BlockState
impl From<BlackstoneStairs> for BlockState
Source§fn from(b: BlackstoneStairs) -> Self
fn from(b: BlackstoneStairs) -> Self
Converts to this type from the input type.
Source§impl From<BlackstoneWall> for BlockState
impl From<BlackstoneWall> for BlockState
Source§fn from(b: BlackstoneWall) -> Self
fn from(b: BlackstoneWall) -> Self
Converts to this type from the input type.
Source§impl From<BlastFurnace> for BlockState
impl From<BlastFurnace> for BlockState
Source§fn from(b: BlastFurnace) -> Self
fn from(b: BlastFurnace) -> Self
Converts to this type from the input type.
Source§impl From<Block> for BlockState
impl From<Block> for BlockState
Source§impl From<BlockState> for Block
impl From<BlockState> for Block
Source§fn from(value: BlockState) -> Self
fn from(value: BlockState) -> Self
Converts to this type from the input type.
Source§impl From<BlockState> for Box<dyn Block>
impl From<BlockState> for Box<dyn Block>
Source§fn from(block_state: BlockState) -> Self
fn from(block_state: BlockState) -> Self
Converts to this type from the input type.
Source§impl From<BlockState> for FluidState
impl From<BlockState> for FluidState
Source§fn from(state: BlockState) -> Self
fn from(state: BlockState) -> Self
Converts to this type from the input type.
Source§impl From<BlueBanner> for BlockState
impl From<BlueBanner> for BlockState
Source§fn from(b: BlueBanner) -> Self
fn from(b: BlueBanner) -> Self
Converts to this type from the input type.
Source§impl From<BlueBed> for BlockState
impl From<BlueBed> for BlockState
Source§impl From<BlueCandle> for BlockState
impl From<BlueCandle> for BlockState
Source§fn from(b: BlueCandle) -> Self
fn from(b: BlueCandle) -> Self
Converts to this type from the input type.
Source§impl From<BlueCandleCake> for BlockState
impl From<BlueCandleCake> for BlockState
Source§fn from(b: BlueCandleCake) -> Self
fn from(b: BlueCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<BlueCarpet> for BlockState
impl From<BlueCarpet> for BlockState
Source§fn from(b: BlueCarpet) -> Self
fn from(b: BlueCarpet) -> Self
Converts to this type from the input type.
Source§impl From<BlueConcrete> for BlockState
impl From<BlueConcrete> for BlockState
Source§fn from(b: BlueConcrete) -> Self
fn from(b: BlueConcrete) -> Self
Converts to this type from the input type.
Source§impl From<BlueConcretePowder> for BlockState
impl From<BlueConcretePowder> for BlockState
Source§fn from(b: BlueConcretePowder) -> Self
fn from(b: BlueConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<BlueGlazedTerracotta> for BlockState
impl From<BlueGlazedTerracotta> for BlockState
Source§fn from(b: BlueGlazedTerracotta) -> Self
fn from(b: BlueGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<BlueIce> for BlockState
impl From<BlueIce> for BlockState
Source§impl From<BlueOrchid> for BlockState
impl From<BlueOrchid> for BlockState
Source§fn from(b: BlueOrchid) -> Self
fn from(b: BlueOrchid) -> Self
Converts to this type from the input type.
Source§impl From<BlueShulkerBox> for BlockState
impl From<BlueShulkerBox> for BlockState
Source§fn from(b: BlueShulkerBox) -> Self
fn from(b: BlueShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<BlueStainedGlass> for BlockState
impl From<BlueStainedGlass> for BlockState
Source§fn from(b: BlueStainedGlass) -> Self
fn from(b: BlueStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<BlueStainedGlassPane> for BlockState
impl From<BlueStainedGlassPane> for BlockState
Source§fn from(b: BlueStainedGlassPane) -> Self
fn from(b: BlueStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<BlueTerracotta> for BlockState
impl From<BlueTerracotta> for BlockState
Source§fn from(b: BlueTerracotta) -> Self
fn from(b: BlueTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<BlueWallBanner> for BlockState
impl From<BlueWallBanner> for BlockState
Source§fn from(b: BlueWallBanner) -> Self
fn from(b: BlueWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<BlueWool> for BlockState
impl From<BlueWool> for BlockState
Source§impl From<BoneBlock> for BlockState
impl From<BoneBlock> for BlockState
Source§impl From<Bookshelf> for BlockState
impl From<Bookshelf> for BlockState
Source§impl From<BrainCoral> for BlockState
impl From<BrainCoral> for BlockState
Source§fn from(b: BrainCoral) -> Self
fn from(b: BrainCoral) -> Self
Converts to this type from the input type.
Source§impl From<BrainCoralBlock> for BlockState
impl From<BrainCoralBlock> for BlockState
Source§fn from(b: BrainCoralBlock) -> Self
fn from(b: BrainCoralBlock) -> Self
Converts to this type from the input type.
Source§impl From<BrainCoralFan> for BlockState
impl From<BrainCoralFan> for BlockState
Source§fn from(b: BrainCoralFan) -> Self
fn from(b: BrainCoralFan) -> Self
Converts to this type from the input type.
Source§impl From<BrainCoralWallFan> for BlockState
impl From<BrainCoralWallFan> for BlockState
Source§fn from(b: BrainCoralWallFan) -> Self
fn from(b: BrainCoralWallFan) -> Self
Converts to this type from the input type.
Source§impl From<BrewingStand> for BlockState
impl From<BrewingStand> for BlockState
Source§fn from(b: BrewingStand) -> Self
fn from(b: BrewingStand) -> Self
Converts to this type from the input type.
Source§impl From<BrickSlab> for BlockState
impl From<BrickSlab> for BlockState
Source§impl From<BrickStairs> for BlockState
impl From<BrickStairs> for BlockState
Source§fn from(b: BrickStairs) -> Self
fn from(b: BrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<BrickWall> for BlockState
impl From<BrickWall> for BlockState
Source§impl From<Bricks> for BlockState
impl From<Bricks> for BlockState
Source§impl From<BrownBanner> for BlockState
impl From<BrownBanner> for BlockState
Source§fn from(b: BrownBanner) -> Self
fn from(b: BrownBanner) -> Self
Converts to this type from the input type.
Source§impl From<BrownBed> for BlockState
impl From<BrownBed> for BlockState
Source§impl From<BrownCandle> for BlockState
impl From<BrownCandle> for BlockState
Source§fn from(b: BrownCandle) -> Self
fn from(b: BrownCandle) -> Self
Converts to this type from the input type.
Source§impl From<BrownCandleCake> for BlockState
impl From<BrownCandleCake> for BlockState
Source§fn from(b: BrownCandleCake) -> Self
fn from(b: BrownCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<BrownCarpet> for BlockState
impl From<BrownCarpet> for BlockState
Source§fn from(b: BrownCarpet) -> Self
fn from(b: BrownCarpet) -> Self
Converts to this type from the input type.
Source§impl From<BrownConcrete> for BlockState
impl From<BrownConcrete> for BlockState
Source§fn from(b: BrownConcrete) -> Self
fn from(b: BrownConcrete) -> Self
Converts to this type from the input type.
Source§impl From<BrownConcretePowder> for BlockState
impl From<BrownConcretePowder> for BlockState
Source§fn from(b: BrownConcretePowder) -> Self
fn from(b: BrownConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<BrownGlazedTerracotta> for BlockState
impl From<BrownGlazedTerracotta> for BlockState
Source§fn from(b: BrownGlazedTerracotta) -> Self
fn from(b: BrownGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<BrownMushroom> for BlockState
impl From<BrownMushroom> for BlockState
Source§fn from(b: BrownMushroom) -> Self
fn from(b: BrownMushroom) -> Self
Converts to this type from the input type.
Source§impl From<BrownMushroomBlock> for BlockState
impl From<BrownMushroomBlock> for BlockState
Source§fn from(b: BrownMushroomBlock) -> Self
fn from(b: BrownMushroomBlock) -> Self
Converts to this type from the input type.
Source§impl From<BrownShulkerBox> for BlockState
impl From<BrownShulkerBox> for BlockState
Source§fn from(b: BrownShulkerBox) -> Self
fn from(b: BrownShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<BrownStainedGlass> for BlockState
impl From<BrownStainedGlass> for BlockState
Source§fn from(b: BrownStainedGlass) -> Self
fn from(b: BrownStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<BrownStainedGlassPane> for BlockState
impl From<BrownStainedGlassPane> for BlockState
Source§fn from(b: BrownStainedGlassPane) -> Self
fn from(b: BrownStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<BrownTerracotta> for BlockState
impl From<BrownTerracotta> for BlockState
Source§fn from(b: BrownTerracotta) -> Self
fn from(b: BrownTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<BrownWallBanner> for BlockState
impl From<BrownWallBanner> for BlockState
Source§fn from(b: BrownWallBanner) -> Self
fn from(b: BrownWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<BrownWool> for BlockState
impl From<BrownWool> for BlockState
Source§impl From<BubbleColumn> for BlockState
impl From<BubbleColumn> for BlockState
Source§fn from(b: BubbleColumn) -> Self
fn from(b: BubbleColumn) -> Self
Converts to this type from the input type.
Source§impl From<BubbleCoral> for BlockState
impl From<BubbleCoral> for BlockState
Source§fn from(b: BubbleCoral) -> Self
fn from(b: BubbleCoral) -> Self
Converts to this type from the input type.
Source§impl From<BubbleCoralBlock> for BlockState
impl From<BubbleCoralBlock> for BlockState
Source§fn from(b: BubbleCoralBlock) -> Self
fn from(b: BubbleCoralBlock) -> Self
Converts to this type from the input type.
Source§impl From<BubbleCoralFan> for BlockState
impl From<BubbleCoralFan> for BlockState
Source§fn from(b: BubbleCoralFan) -> Self
fn from(b: BubbleCoralFan) -> Self
Converts to this type from the input type.
Source§impl From<BubbleCoralWallFan> for BlockState
impl From<BubbleCoralWallFan> for BlockState
Source§fn from(b: BubbleCoralWallFan) -> Self
fn from(b: BubbleCoralWallFan) -> Self
Converts to this type from the input type.
Source§impl From<BuddingAmethyst> for BlockState
impl From<BuddingAmethyst> for BlockState
Source§fn from(b: BuddingAmethyst) -> Self
fn from(b: BuddingAmethyst) -> Self
Converts to this type from the input type.
Source§impl From<Cactus> for BlockState
impl From<Cactus> for BlockState
Source§impl From<Cake> for BlockState
impl From<Cake> for BlockState
Source§impl From<Calcite> for BlockState
impl From<Calcite> for BlockState
Source§impl From<CalibratedSculkSensor> for BlockState
impl From<CalibratedSculkSensor> for BlockState
Source§fn from(b: CalibratedSculkSensor) -> Self
fn from(b: CalibratedSculkSensor) -> Self
Converts to this type from the input type.
Source§impl From<Campfire> for BlockState
impl From<Campfire> for BlockState
Source§impl From<Candle> for BlockState
impl From<Candle> for BlockState
Source§impl From<CandleCake> for BlockState
impl From<CandleCake> for BlockState
Source§fn from(b: CandleCake) -> Self
fn from(b: CandleCake) -> Self
Converts to this type from the input type.
Source§impl From<Carrots> for BlockState
impl From<Carrots> for BlockState
Source§impl From<CartographyTable> for BlockState
impl From<CartographyTable> for BlockState
Source§fn from(b: CartographyTable) -> Self
fn from(b: CartographyTable) -> Self
Converts to this type from the input type.
Source§impl From<CarvedPumpkin> for BlockState
impl From<CarvedPumpkin> for BlockState
Source§fn from(b: CarvedPumpkin) -> Self
fn from(b: CarvedPumpkin) -> Self
Converts to this type from the input type.
Source§impl From<Cauldron> for BlockState
impl From<Cauldron> for BlockState
Source§impl From<CaveAir> for BlockState
impl From<CaveAir> for BlockState
Source§impl From<CaveVines> for BlockState
impl From<CaveVines> for BlockState
Source§impl From<CaveVinesPlant> for BlockState
impl From<CaveVinesPlant> for BlockState
Source§fn from(b: CaveVinesPlant) -> Self
fn from(b: CaveVinesPlant) -> Self
Converts to this type from the input type.
Source§impl From<Chain> for BlockState
impl From<Chain> for BlockState
Source§impl From<ChainCommandBlock> for BlockState
impl From<ChainCommandBlock> for BlockState
Source§fn from(b: ChainCommandBlock) -> Self
fn from(b: ChainCommandBlock) -> Self
Converts to this type from the input type.
Source§impl From<CherryButton> for BlockState
impl From<CherryButton> for BlockState
Source§fn from(b: CherryButton) -> Self
fn from(b: CherryButton) -> Self
Converts to this type from the input type.
Source§impl From<CherryDoor> for BlockState
impl From<CherryDoor> for BlockState
Source§fn from(b: CherryDoor) -> Self
fn from(b: CherryDoor) -> Self
Converts to this type from the input type.
Source§impl From<CherryFence> for BlockState
impl From<CherryFence> for BlockState
Source§fn from(b: CherryFence) -> Self
fn from(b: CherryFence) -> Self
Converts to this type from the input type.
Source§impl From<CherryFenceGate> for BlockState
impl From<CherryFenceGate> for BlockState
Source§fn from(b: CherryFenceGate) -> Self
fn from(b: CherryFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<CherryHangingSign> for BlockState
impl From<CherryHangingSign> for BlockState
Source§fn from(b: CherryHangingSign) -> Self
fn from(b: CherryHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<CherryLeaves> for BlockState
impl From<CherryLeaves> for BlockState
Source§fn from(b: CherryLeaves) -> Self
fn from(b: CherryLeaves) -> Self
Converts to this type from the input type.
Source§impl From<CherryLog> for BlockState
impl From<CherryLog> for BlockState
Source§impl From<CherryPlanks> for BlockState
impl From<CherryPlanks> for BlockState
Source§fn from(b: CherryPlanks) -> Self
fn from(b: CherryPlanks) -> Self
Converts to this type from the input type.
Source§impl From<CherryPressurePlate> for BlockState
impl From<CherryPressurePlate> for BlockState
Source§fn from(b: CherryPressurePlate) -> Self
fn from(b: CherryPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<CherrySapling> for BlockState
impl From<CherrySapling> for BlockState
Source§fn from(b: CherrySapling) -> Self
fn from(b: CherrySapling) -> Self
Converts to this type from the input type.
Source§impl From<CherrySign> for BlockState
impl From<CherrySign> for BlockState
Source§fn from(b: CherrySign) -> Self
fn from(b: CherrySign) -> Self
Converts to this type from the input type.
Source§impl From<CherrySlab> for BlockState
impl From<CherrySlab> for BlockState
Source§fn from(b: CherrySlab) -> Self
fn from(b: CherrySlab) -> Self
Converts to this type from the input type.
Source§impl From<CherryStairs> for BlockState
impl From<CherryStairs> for BlockState
Source§fn from(b: CherryStairs) -> Self
fn from(b: CherryStairs) -> Self
Converts to this type from the input type.
Source§impl From<CherryTrapdoor> for BlockState
impl From<CherryTrapdoor> for BlockState
Source§fn from(b: CherryTrapdoor) -> Self
fn from(b: CherryTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<CherryWallHangingSign> for BlockState
impl From<CherryWallHangingSign> for BlockState
Source§fn from(b: CherryWallHangingSign) -> Self
fn from(b: CherryWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<CherryWallSign> for BlockState
impl From<CherryWallSign> for BlockState
Source§fn from(b: CherryWallSign) -> Self
fn from(b: CherryWallSign) -> Self
Converts to this type from the input type.
Source§impl From<CherryWood> for BlockState
impl From<CherryWood> for BlockState
Source§fn from(b: CherryWood) -> Self
fn from(b: CherryWood) -> Self
Converts to this type from the input type.
Source§impl From<Chest> for BlockState
impl From<Chest> for BlockState
Source§impl From<ChippedAnvil> for BlockState
impl From<ChippedAnvil> for BlockState
Source§fn from(b: ChippedAnvil) -> Self
fn from(b: ChippedAnvil) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledBookshelf> for BlockState
impl From<ChiseledBookshelf> for BlockState
Source§fn from(b: ChiseledBookshelf) -> Self
fn from(b: ChiseledBookshelf) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledCopper> for BlockState
impl From<ChiseledCopper> for BlockState
Source§fn from(b: ChiseledCopper) -> Self
fn from(b: ChiseledCopper) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledDeepslate> for BlockState
impl From<ChiseledDeepslate> for BlockState
Source§fn from(b: ChiseledDeepslate) -> Self
fn from(b: ChiseledDeepslate) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledNetherBricks> for BlockState
impl From<ChiseledNetherBricks> for BlockState
Source§fn from(b: ChiseledNetherBricks) -> Self
fn from(b: ChiseledNetherBricks) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledPolishedBlackstone> for BlockState
impl From<ChiseledPolishedBlackstone> for BlockState
Source§fn from(b: ChiseledPolishedBlackstone) -> Self
fn from(b: ChiseledPolishedBlackstone) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledQuartzBlock> for BlockState
impl From<ChiseledQuartzBlock> for BlockState
Source§fn from(b: ChiseledQuartzBlock) -> Self
fn from(b: ChiseledQuartzBlock) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledRedSandstone> for BlockState
impl From<ChiseledRedSandstone> for BlockState
Source§fn from(b: ChiseledRedSandstone) -> Self
fn from(b: ChiseledRedSandstone) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledResinBricks> for BlockState
impl From<ChiseledResinBricks> for BlockState
Source§fn from(b: ChiseledResinBricks) -> Self
fn from(b: ChiseledResinBricks) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledSandstone> for BlockState
impl From<ChiseledSandstone> for BlockState
Source§fn from(b: ChiseledSandstone) -> Self
fn from(b: ChiseledSandstone) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledStoneBricks> for BlockState
impl From<ChiseledStoneBricks> for BlockState
Source§fn from(b: ChiseledStoneBricks) -> Self
fn from(b: ChiseledStoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledTuff> for BlockState
impl From<ChiseledTuff> for BlockState
Source§fn from(b: ChiseledTuff) -> Self
fn from(b: ChiseledTuff) -> Self
Converts to this type from the input type.
Source§impl From<ChiseledTuffBricks> for BlockState
impl From<ChiseledTuffBricks> for BlockState
Source§fn from(b: ChiseledTuffBricks) -> Self
fn from(b: ChiseledTuffBricks) -> Self
Converts to this type from the input type.
Source§impl From<ChorusFlower> for BlockState
impl From<ChorusFlower> for BlockState
Source§fn from(b: ChorusFlower) -> Self
fn from(b: ChorusFlower) -> Self
Converts to this type from the input type.
Source§impl From<ChorusPlant> for BlockState
impl From<ChorusPlant> for BlockState
Source§fn from(b: ChorusPlant) -> Self
fn from(b: ChorusPlant) -> Self
Converts to this type from the input type.
Source§impl From<Clay> for BlockState
impl From<Clay> for BlockState
Source§impl From<ClosedEyeblossom> for BlockState
impl From<ClosedEyeblossom> for BlockState
Source§fn from(b: ClosedEyeblossom) -> Self
fn from(b: ClosedEyeblossom) -> Self
Converts to this type from the input type.
Source§impl From<CoalBlock> for BlockState
impl From<CoalBlock> for BlockState
Source§impl From<CoalOre> for BlockState
impl From<CoalOre> for BlockState
Source§impl From<CoarseDirt> for BlockState
impl From<CoarseDirt> for BlockState
Source§fn from(b: CoarseDirt) -> Self
fn from(b: CoarseDirt) -> Self
Converts to this type from the input type.
Source§impl From<CobbledDeepslate> for BlockState
impl From<CobbledDeepslate> for BlockState
Source§fn from(b: CobbledDeepslate) -> Self
fn from(b: CobbledDeepslate) -> Self
Converts to this type from the input type.
Source§impl From<CobbledDeepslateSlab> for BlockState
impl From<CobbledDeepslateSlab> for BlockState
Source§fn from(b: CobbledDeepslateSlab) -> Self
fn from(b: CobbledDeepslateSlab) -> Self
Converts to this type from the input type.
Source§impl From<CobbledDeepslateStairs> for BlockState
impl From<CobbledDeepslateStairs> for BlockState
Source§fn from(b: CobbledDeepslateStairs) -> Self
fn from(b: CobbledDeepslateStairs) -> Self
Converts to this type from the input type.
Source§impl From<CobbledDeepslateWall> for BlockState
impl From<CobbledDeepslateWall> for BlockState
Source§fn from(b: CobbledDeepslateWall) -> Self
fn from(b: CobbledDeepslateWall) -> Self
Converts to this type from the input type.
Source§impl From<Cobblestone> for BlockState
impl From<Cobblestone> for BlockState
Source§fn from(b: Cobblestone) -> Self
fn from(b: Cobblestone) -> Self
Converts to this type from the input type.
Source§impl From<CobblestoneSlab> for BlockState
impl From<CobblestoneSlab> for BlockState
Source§fn from(b: CobblestoneSlab) -> Self
fn from(b: CobblestoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<CobblestoneStairs> for BlockState
impl From<CobblestoneStairs> for BlockState
Source§fn from(b: CobblestoneStairs) -> Self
fn from(b: CobblestoneStairs) -> Self
Converts to this type from the input type.
Source§impl From<CobblestoneWall> for BlockState
impl From<CobblestoneWall> for BlockState
Source§fn from(b: CobblestoneWall) -> Self
fn from(b: CobblestoneWall) -> Self
Converts to this type from the input type.
Source§impl From<Cobweb> for BlockState
impl From<Cobweb> for BlockState
Source§impl From<Cocoa> for BlockState
impl From<Cocoa> for BlockState
Source§impl From<CommandBlock> for BlockState
impl From<CommandBlock> for BlockState
Source§fn from(b: CommandBlock) -> Self
fn from(b: CommandBlock) -> Self
Converts to this type from the input type.
Source§impl From<Comparator> for BlockState
impl From<Comparator> for BlockState
Source§fn from(b: Comparator) -> Self
fn from(b: Comparator) -> Self
Converts to this type from the input type.
Source§impl From<Composter> for BlockState
impl From<Composter> for BlockState
Source§impl From<Conduit> for BlockState
impl From<Conduit> for BlockState
Source§impl From<CopperBlock> for BlockState
impl From<CopperBlock> for BlockState
Source§fn from(b: CopperBlock) -> Self
fn from(b: CopperBlock) -> Self
Converts to this type from the input type.
Source§impl From<CopperBulb> for BlockState
impl From<CopperBulb> for BlockState
Source§fn from(b: CopperBulb) -> Self
fn from(b: CopperBulb) -> Self
Converts to this type from the input type.
Source§impl From<CopperDoor> for BlockState
impl From<CopperDoor> for BlockState
Source§fn from(b: CopperDoor) -> Self
fn from(b: CopperDoor) -> Self
Converts to this type from the input type.
Source§impl From<CopperGrate> for BlockState
impl From<CopperGrate> for BlockState
Source§fn from(b: CopperGrate) -> Self
fn from(b: CopperGrate) -> Self
Converts to this type from the input type.
Source§impl From<CopperOre> for BlockState
impl From<CopperOre> for BlockState
Source§impl From<CopperTrapdoor> for BlockState
impl From<CopperTrapdoor> for BlockState
Source§fn from(b: CopperTrapdoor) -> Self
fn from(b: CopperTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<Cornflower> for BlockState
impl From<Cornflower> for BlockState
Source§fn from(b: Cornflower) -> Self
fn from(b: Cornflower) -> Self
Converts to this type from the input type.
Source§impl From<CrackedDeepslateBricks> for BlockState
impl From<CrackedDeepslateBricks> for BlockState
Source§fn from(b: CrackedDeepslateBricks) -> Self
fn from(b: CrackedDeepslateBricks) -> Self
Converts to this type from the input type.
Source§impl From<CrackedDeepslateTiles> for BlockState
impl From<CrackedDeepslateTiles> for BlockState
Source§fn from(b: CrackedDeepslateTiles) -> Self
fn from(b: CrackedDeepslateTiles) -> Self
Converts to this type from the input type.
Source§impl From<CrackedNetherBricks> for BlockState
impl From<CrackedNetherBricks> for BlockState
Source§fn from(b: CrackedNetherBricks) -> Self
fn from(b: CrackedNetherBricks) -> Self
Converts to this type from the input type.
Source§impl From<CrackedPolishedBlackstoneBricks> for BlockState
impl From<CrackedPolishedBlackstoneBricks> for BlockState
Source§fn from(b: CrackedPolishedBlackstoneBricks) -> Self
fn from(b: CrackedPolishedBlackstoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<CrackedStoneBricks> for BlockState
impl From<CrackedStoneBricks> for BlockState
Source§fn from(b: CrackedStoneBricks) -> Self
fn from(b: CrackedStoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<Crafter> for BlockState
impl From<Crafter> for BlockState
Source§impl From<CraftingTable> for BlockState
impl From<CraftingTable> for BlockState
Source§fn from(b: CraftingTable) -> Self
fn from(b: CraftingTable) -> Self
Converts to this type from the input type.
Source§impl From<CreakingHeart> for BlockState
impl From<CreakingHeart> for BlockState
Source§fn from(b: CreakingHeart) -> Self
fn from(b: CreakingHeart) -> Self
Converts to this type from the input type.
Source§impl From<CreeperHead> for BlockState
impl From<CreeperHead> for BlockState
Source§fn from(b: CreeperHead) -> Self
fn from(b: CreeperHead) -> Self
Converts to this type from the input type.
Source§impl From<CreeperWallHead> for BlockState
impl From<CreeperWallHead> for BlockState
Source§fn from(b: CreeperWallHead) -> Self
fn from(b: CreeperWallHead) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonButton> for BlockState
impl From<CrimsonButton> for BlockState
Source§fn from(b: CrimsonButton) -> Self
fn from(b: CrimsonButton) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonDoor> for BlockState
impl From<CrimsonDoor> for BlockState
Source§fn from(b: CrimsonDoor) -> Self
fn from(b: CrimsonDoor) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonFence> for BlockState
impl From<CrimsonFence> for BlockState
Source§fn from(b: CrimsonFence) -> Self
fn from(b: CrimsonFence) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonFenceGate> for BlockState
impl From<CrimsonFenceGate> for BlockState
Source§fn from(b: CrimsonFenceGate) -> Self
fn from(b: CrimsonFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonFungus> for BlockState
impl From<CrimsonFungus> for BlockState
Source§fn from(b: CrimsonFungus) -> Self
fn from(b: CrimsonFungus) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonHangingSign> for BlockState
impl From<CrimsonHangingSign> for BlockState
Source§fn from(b: CrimsonHangingSign) -> Self
fn from(b: CrimsonHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonHyphae> for BlockState
impl From<CrimsonHyphae> for BlockState
Source§fn from(b: CrimsonHyphae) -> Self
fn from(b: CrimsonHyphae) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonNylium> for BlockState
impl From<CrimsonNylium> for BlockState
Source§fn from(b: CrimsonNylium) -> Self
fn from(b: CrimsonNylium) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonPlanks> for BlockState
impl From<CrimsonPlanks> for BlockState
Source§fn from(b: CrimsonPlanks) -> Self
fn from(b: CrimsonPlanks) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonPressurePlate> for BlockState
impl From<CrimsonPressurePlate> for BlockState
Source§fn from(b: CrimsonPressurePlate) -> Self
fn from(b: CrimsonPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonRoots> for BlockState
impl From<CrimsonRoots> for BlockState
Source§fn from(b: CrimsonRoots) -> Self
fn from(b: CrimsonRoots) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonSign> for BlockState
impl From<CrimsonSign> for BlockState
Source§fn from(b: CrimsonSign) -> Self
fn from(b: CrimsonSign) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonSlab> for BlockState
impl From<CrimsonSlab> for BlockState
Source§fn from(b: CrimsonSlab) -> Self
fn from(b: CrimsonSlab) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonStairs> for BlockState
impl From<CrimsonStairs> for BlockState
Source§fn from(b: CrimsonStairs) -> Self
fn from(b: CrimsonStairs) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonStem> for BlockState
impl From<CrimsonStem> for BlockState
Source§fn from(b: CrimsonStem) -> Self
fn from(b: CrimsonStem) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonTrapdoor> for BlockState
impl From<CrimsonTrapdoor> for BlockState
Source§fn from(b: CrimsonTrapdoor) -> Self
fn from(b: CrimsonTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonWallHangingSign> for BlockState
impl From<CrimsonWallHangingSign> for BlockState
Source§fn from(b: CrimsonWallHangingSign) -> Self
fn from(b: CrimsonWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<CrimsonWallSign> for BlockState
impl From<CrimsonWallSign> for BlockState
Source§fn from(b: CrimsonWallSign) -> Self
fn from(b: CrimsonWallSign) -> Self
Converts to this type from the input type.
Source§impl From<CryingObsidian> for BlockState
impl From<CryingObsidian> for BlockState
Source§fn from(b: CryingObsidian) -> Self
fn from(b: CryingObsidian) -> Self
Converts to this type from the input type.
Source§impl From<CutCopper> for BlockState
impl From<CutCopper> for BlockState
Source§impl From<CutCopperSlab> for BlockState
impl From<CutCopperSlab> for BlockState
Source§fn from(b: CutCopperSlab) -> Self
fn from(b: CutCopperSlab) -> Self
Converts to this type from the input type.
Source§impl From<CutCopperStairs> for BlockState
impl From<CutCopperStairs> for BlockState
Source§fn from(b: CutCopperStairs) -> Self
fn from(b: CutCopperStairs) -> Self
Converts to this type from the input type.
Source§impl From<CutRedSandstone> for BlockState
impl From<CutRedSandstone> for BlockState
Source§fn from(b: CutRedSandstone) -> Self
fn from(b: CutRedSandstone) -> Self
Converts to this type from the input type.
Source§impl From<CutRedSandstoneSlab> for BlockState
impl From<CutRedSandstoneSlab> for BlockState
Source§fn from(b: CutRedSandstoneSlab) -> Self
fn from(b: CutRedSandstoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<CutSandstone> for BlockState
impl From<CutSandstone> for BlockState
Source§fn from(b: CutSandstone) -> Self
fn from(b: CutSandstone) -> Self
Converts to this type from the input type.
Source§impl From<CutSandstoneSlab> for BlockState
impl From<CutSandstoneSlab> for BlockState
Source§fn from(b: CutSandstoneSlab) -> Self
fn from(b: CutSandstoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<CyanBanner> for BlockState
impl From<CyanBanner> for BlockState
Source§fn from(b: CyanBanner) -> Self
fn from(b: CyanBanner) -> Self
Converts to this type from the input type.
Source§impl From<CyanBed> for BlockState
impl From<CyanBed> for BlockState
Source§impl From<CyanCandle> for BlockState
impl From<CyanCandle> for BlockState
Source§fn from(b: CyanCandle) -> Self
fn from(b: CyanCandle) -> Self
Converts to this type from the input type.
Source§impl From<CyanCandleCake> for BlockState
impl From<CyanCandleCake> for BlockState
Source§fn from(b: CyanCandleCake) -> Self
fn from(b: CyanCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<CyanCarpet> for BlockState
impl From<CyanCarpet> for BlockState
Source§fn from(b: CyanCarpet) -> Self
fn from(b: CyanCarpet) -> Self
Converts to this type from the input type.
Source§impl From<CyanConcrete> for BlockState
impl From<CyanConcrete> for BlockState
Source§fn from(b: CyanConcrete) -> Self
fn from(b: CyanConcrete) -> Self
Converts to this type from the input type.
Source§impl From<CyanConcretePowder> for BlockState
impl From<CyanConcretePowder> for BlockState
Source§fn from(b: CyanConcretePowder) -> Self
fn from(b: CyanConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<CyanGlazedTerracotta> for BlockState
impl From<CyanGlazedTerracotta> for BlockState
Source§fn from(b: CyanGlazedTerracotta) -> Self
fn from(b: CyanGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<CyanShulkerBox> for BlockState
impl From<CyanShulkerBox> for BlockState
Source§fn from(b: CyanShulkerBox) -> Self
fn from(b: CyanShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<CyanStainedGlass> for BlockState
impl From<CyanStainedGlass> for BlockState
Source§fn from(b: CyanStainedGlass) -> Self
fn from(b: CyanStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<CyanStainedGlassPane> for BlockState
impl From<CyanStainedGlassPane> for BlockState
Source§fn from(b: CyanStainedGlassPane) -> Self
fn from(b: CyanStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<CyanTerracotta> for BlockState
impl From<CyanTerracotta> for BlockState
Source§fn from(b: CyanTerracotta) -> Self
fn from(b: CyanTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<CyanWallBanner> for BlockState
impl From<CyanWallBanner> for BlockState
Source§fn from(b: CyanWallBanner) -> Self
fn from(b: CyanWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<CyanWool> for BlockState
impl From<CyanWool> for BlockState
Source§impl From<DamagedAnvil> for BlockState
impl From<DamagedAnvil> for BlockState
Source§fn from(b: DamagedAnvil) -> Self
fn from(b: DamagedAnvil) -> Self
Converts to this type from the input type.
Source§impl From<Dandelion> for BlockState
impl From<Dandelion> for BlockState
Source§impl From<DarkOakButton> for BlockState
impl From<DarkOakButton> for BlockState
Source§fn from(b: DarkOakButton) -> Self
fn from(b: DarkOakButton) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakDoor> for BlockState
impl From<DarkOakDoor> for BlockState
Source§fn from(b: DarkOakDoor) -> Self
fn from(b: DarkOakDoor) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakFence> for BlockState
impl From<DarkOakFence> for BlockState
Source§fn from(b: DarkOakFence) -> Self
fn from(b: DarkOakFence) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakFenceGate> for BlockState
impl From<DarkOakFenceGate> for BlockState
Source§fn from(b: DarkOakFenceGate) -> Self
fn from(b: DarkOakFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakHangingSign> for BlockState
impl From<DarkOakHangingSign> for BlockState
Source§fn from(b: DarkOakHangingSign) -> Self
fn from(b: DarkOakHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakLeaves> for BlockState
impl From<DarkOakLeaves> for BlockState
Source§fn from(b: DarkOakLeaves) -> Self
fn from(b: DarkOakLeaves) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakLog> for BlockState
impl From<DarkOakLog> for BlockState
Source§fn from(b: DarkOakLog) -> Self
fn from(b: DarkOakLog) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakPlanks> for BlockState
impl From<DarkOakPlanks> for BlockState
Source§fn from(b: DarkOakPlanks) -> Self
fn from(b: DarkOakPlanks) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakPressurePlate> for BlockState
impl From<DarkOakPressurePlate> for BlockState
Source§fn from(b: DarkOakPressurePlate) -> Self
fn from(b: DarkOakPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakSapling> for BlockState
impl From<DarkOakSapling> for BlockState
Source§fn from(b: DarkOakSapling) -> Self
fn from(b: DarkOakSapling) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakSign> for BlockState
impl From<DarkOakSign> for BlockState
Source§fn from(b: DarkOakSign) -> Self
fn from(b: DarkOakSign) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakSlab> for BlockState
impl From<DarkOakSlab> for BlockState
Source§fn from(b: DarkOakSlab) -> Self
fn from(b: DarkOakSlab) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakStairs> for BlockState
impl From<DarkOakStairs> for BlockState
Source§fn from(b: DarkOakStairs) -> Self
fn from(b: DarkOakStairs) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakTrapdoor> for BlockState
impl From<DarkOakTrapdoor> for BlockState
Source§fn from(b: DarkOakTrapdoor) -> Self
fn from(b: DarkOakTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakWallHangingSign> for BlockState
impl From<DarkOakWallHangingSign> for BlockState
Source§fn from(b: DarkOakWallHangingSign) -> Self
fn from(b: DarkOakWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakWallSign> for BlockState
impl From<DarkOakWallSign> for BlockState
Source§fn from(b: DarkOakWallSign) -> Self
fn from(b: DarkOakWallSign) -> Self
Converts to this type from the input type.
Source§impl From<DarkOakWood> for BlockState
impl From<DarkOakWood> for BlockState
Source§fn from(b: DarkOakWood) -> Self
fn from(b: DarkOakWood) -> Self
Converts to this type from the input type.
Source§impl From<DarkPrismarine> for BlockState
impl From<DarkPrismarine> for BlockState
Source§fn from(b: DarkPrismarine) -> Self
fn from(b: DarkPrismarine) -> Self
Converts to this type from the input type.
Source§impl From<DarkPrismarineSlab> for BlockState
impl From<DarkPrismarineSlab> for BlockState
Source§fn from(b: DarkPrismarineSlab) -> Self
fn from(b: DarkPrismarineSlab) -> Self
Converts to this type from the input type.
Source§impl From<DarkPrismarineStairs> for BlockState
impl From<DarkPrismarineStairs> for BlockState
Source§fn from(b: DarkPrismarineStairs) -> Self
fn from(b: DarkPrismarineStairs) -> Self
Converts to this type from the input type.
Source§impl From<DaylightDetector> for BlockState
impl From<DaylightDetector> for BlockState
Source§fn from(b: DaylightDetector) -> Self
fn from(b: DaylightDetector) -> Self
Converts to this type from the input type.
Source§impl From<DeadBrainCoral> for BlockState
impl From<DeadBrainCoral> for BlockState
Source§fn from(b: DeadBrainCoral) -> Self
fn from(b: DeadBrainCoral) -> Self
Converts to this type from the input type.
Source§impl From<DeadBrainCoralBlock> for BlockState
impl From<DeadBrainCoralBlock> for BlockState
Source§fn from(b: DeadBrainCoralBlock) -> Self
fn from(b: DeadBrainCoralBlock) -> Self
Converts to this type from the input type.
Source§impl From<DeadBrainCoralFan> for BlockState
impl From<DeadBrainCoralFan> for BlockState
Source§fn from(b: DeadBrainCoralFan) -> Self
fn from(b: DeadBrainCoralFan) -> Self
Converts to this type from the input type.
Source§impl From<DeadBrainCoralWallFan> for BlockState
impl From<DeadBrainCoralWallFan> for BlockState
Source§fn from(b: DeadBrainCoralWallFan) -> Self
fn from(b: DeadBrainCoralWallFan) -> Self
Converts to this type from the input type.
Source§impl From<DeadBubbleCoral> for BlockState
impl From<DeadBubbleCoral> for BlockState
Source§fn from(b: DeadBubbleCoral) -> Self
fn from(b: DeadBubbleCoral) -> Self
Converts to this type from the input type.
Source§impl From<DeadBubbleCoralBlock> for BlockState
impl From<DeadBubbleCoralBlock> for BlockState
Source§fn from(b: DeadBubbleCoralBlock) -> Self
fn from(b: DeadBubbleCoralBlock) -> Self
Converts to this type from the input type.
Source§impl From<DeadBubbleCoralFan> for BlockState
impl From<DeadBubbleCoralFan> for BlockState
Source§fn from(b: DeadBubbleCoralFan) -> Self
fn from(b: DeadBubbleCoralFan) -> Self
Converts to this type from the input type.
Source§impl From<DeadBubbleCoralWallFan> for BlockState
impl From<DeadBubbleCoralWallFan> for BlockState
Source§fn from(b: DeadBubbleCoralWallFan) -> Self
fn from(b: DeadBubbleCoralWallFan) -> Self
Converts to this type from the input type.
Source§impl From<DeadBush> for BlockState
impl From<DeadBush> for BlockState
Source§impl From<DeadFireCoral> for BlockState
impl From<DeadFireCoral> for BlockState
Source§fn from(b: DeadFireCoral) -> Self
fn from(b: DeadFireCoral) -> Self
Converts to this type from the input type.
Source§impl From<DeadFireCoralBlock> for BlockState
impl From<DeadFireCoralBlock> for BlockState
Source§fn from(b: DeadFireCoralBlock) -> Self
fn from(b: DeadFireCoralBlock) -> Self
Converts to this type from the input type.
Source§impl From<DeadFireCoralFan> for BlockState
impl From<DeadFireCoralFan> for BlockState
Source§fn from(b: DeadFireCoralFan) -> Self
fn from(b: DeadFireCoralFan) -> Self
Converts to this type from the input type.
Source§impl From<DeadFireCoralWallFan> for BlockState
impl From<DeadFireCoralWallFan> for BlockState
Source§fn from(b: DeadFireCoralWallFan) -> Self
fn from(b: DeadFireCoralWallFan) -> Self
Converts to this type from the input type.
Source§impl From<DeadHornCoral> for BlockState
impl From<DeadHornCoral> for BlockState
Source§fn from(b: DeadHornCoral) -> Self
fn from(b: DeadHornCoral) -> Self
Converts to this type from the input type.
Source§impl From<DeadHornCoralBlock> for BlockState
impl From<DeadHornCoralBlock> for BlockState
Source§fn from(b: DeadHornCoralBlock) -> Self
fn from(b: DeadHornCoralBlock) -> Self
Converts to this type from the input type.
Source§impl From<DeadHornCoralFan> for BlockState
impl From<DeadHornCoralFan> for BlockState
Source§fn from(b: DeadHornCoralFan) -> Self
fn from(b: DeadHornCoralFan) -> Self
Converts to this type from the input type.
Source§impl From<DeadHornCoralWallFan> for BlockState
impl From<DeadHornCoralWallFan> for BlockState
Source§fn from(b: DeadHornCoralWallFan) -> Self
fn from(b: DeadHornCoralWallFan) -> Self
Converts to this type from the input type.
Source§impl From<DeadTubeCoral> for BlockState
impl From<DeadTubeCoral> for BlockState
Source§fn from(b: DeadTubeCoral) -> Self
fn from(b: DeadTubeCoral) -> Self
Converts to this type from the input type.
Source§impl From<DeadTubeCoralBlock> for BlockState
impl From<DeadTubeCoralBlock> for BlockState
Source§fn from(b: DeadTubeCoralBlock) -> Self
fn from(b: DeadTubeCoralBlock) -> Self
Converts to this type from the input type.
Source§impl From<DeadTubeCoralFan> for BlockState
impl From<DeadTubeCoralFan> for BlockState
Source§fn from(b: DeadTubeCoralFan) -> Self
fn from(b: DeadTubeCoralFan) -> Self
Converts to this type from the input type.
Source§impl From<DeadTubeCoralWallFan> for BlockState
impl From<DeadTubeCoralWallFan> for BlockState
Source§fn from(b: DeadTubeCoralWallFan) -> Self
fn from(b: DeadTubeCoralWallFan) -> Self
Converts to this type from the input type.
Source§impl From<DecoratedPot> for BlockState
impl From<DecoratedPot> for BlockState
Source§fn from(b: DecoratedPot) -> Self
fn from(b: DecoratedPot) -> Self
Converts to this type from the input type.
Source§impl From<Deepslate> for BlockState
impl From<Deepslate> for BlockState
Source§impl From<DeepslateBrickSlab> for BlockState
impl From<DeepslateBrickSlab> for BlockState
Source§fn from(b: DeepslateBrickSlab) -> Self
fn from(b: DeepslateBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateBrickStairs> for BlockState
impl From<DeepslateBrickStairs> for BlockState
Source§fn from(b: DeepslateBrickStairs) -> Self
fn from(b: DeepslateBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateBrickWall> for BlockState
impl From<DeepslateBrickWall> for BlockState
Source§fn from(b: DeepslateBrickWall) -> Self
fn from(b: DeepslateBrickWall) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateBricks> for BlockState
impl From<DeepslateBricks> for BlockState
Source§fn from(b: DeepslateBricks) -> Self
fn from(b: DeepslateBricks) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateCoalOre> for BlockState
impl From<DeepslateCoalOre> for BlockState
Source§fn from(b: DeepslateCoalOre) -> Self
fn from(b: DeepslateCoalOre) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateCopperOre> for BlockState
impl From<DeepslateCopperOre> for BlockState
Source§fn from(b: DeepslateCopperOre) -> Self
fn from(b: DeepslateCopperOre) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateDiamondOre> for BlockState
impl From<DeepslateDiamondOre> for BlockState
Source§fn from(b: DeepslateDiamondOre) -> Self
fn from(b: DeepslateDiamondOre) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateEmeraldOre> for BlockState
impl From<DeepslateEmeraldOre> for BlockState
Source§fn from(b: DeepslateEmeraldOre) -> Self
fn from(b: DeepslateEmeraldOre) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateGoldOre> for BlockState
impl From<DeepslateGoldOre> for BlockState
Source§fn from(b: DeepslateGoldOre) -> Self
fn from(b: DeepslateGoldOre) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateIronOre> for BlockState
impl From<DeepslateIronOre> for BlockState
Source§fn from(b: DeepslateIronOre) -> Self
fn from(b: DeepslateIronOre) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateLapisOre> for BlockState
impl From<DeepslateLapisOre> for BlockState
Source§fn from(b: DeepslateLapisOre) -> Self
fn from(b: DeepslateLapisOre) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateRedstoneOre> for BlockState
impl From<DeepslateRedstoneOre> for BlockState
Source§fn from(b: DeepslateRedstoneOre) -> Self
fn from(b: DeepslateRedstoneOre) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateTileSlab> for BlockState
impl From<DeepslateTileSlab> for BlockState
Source§fn from(b: DeepslateTileSlab) -> Self
fn from(b: DeepslateTileSlab) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateTileStairs> for BlockState
impl From<DeepslateTileStairs> for BlockState
Source§fn from(b: DeepslateTileStairs) -> Self
fn from(b: DeepslateTileStairs) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateTileWall> for BlockState
impl From<DeepslateTileWall> for BlockState
Source§fn from(b: DeepslateTileWall) -> Self
fn from(b: DeepslateTileWall) -> Self
Converts to this type from the input type.
Source§impl From<DeepslateTiles> for BlockState
impl From<DeepslateTiles> for BlockState
Source§fn from(b: DeepslateTiles) -> Self
fn from(b: DeepslateTiles) -> Self
Converts to this type from the input type.
Source§impl From<DetectorRail> for BlockState
impl From<DetectorRail> for BlockState
Source§fn from(b: DetectorRail) -> Self
fn from(b: DetectorRail) -> Self
Converts to this type from the input type.
Source§impl From<DiamondBlock> for BlockState
impl From<DiamondBlock> for BlockState
Source§fn from(b: DiamondBlock) -> Self
fn from(b: DiamondBlock) -> Self
Converts to this type from the input type.
Source§impl From<DiamondOre> for BlockState
impl From<DiamondOre> for BlockState
Source§fn from(b: DiamondOre) -> Self
fn from(b: DiamondOre) -> Self
Converts to this type from the input type.
Source§impl From<Diorite> for BlockState
impl From<Diorite> for BlockState
Source§impl From<DioriteSlab> for BlockState
impl From<DioriteSlab> for BlockState
Source§fn from(b: DioriteSlab) -> Self
fn from(b: DioriteSlab) -> Self
Converts to this type from the input type.
Source§impl From<DioriteStairs> for BlockState
impl From<DioriteStairs> for BlockState
Source§fn from(b: DioriteStairs) -> Self
fn from(b: DioriteStairs) -> Self
Converts to this type from the input type.
Source§impl From<DioriteWall> for BlockState
impl From<DioriteWall> for BlockState
Source§fn from(b: DioriteWall) -> Self
fn from(b: DioriteWall) -> Self
Converts to this type from the input type.
Source§impl From<Dirt> for BlockState
impl From<Dirt> for BlockState
Source§impl From<DirtPath> for BlockState
impl From<DirtPath> for BlockState
Source§impl From<Dispenser> for BlockState
impl From<Dispenser> for BlockState
Source§impl From<DragonEgg> for BlockState
impl From<DragonEgg> for BlockState
Source§impl From<DragonHead> for BlockState
impl From<DragonHead> for BlockState
Source§fn from(b: DragonHead) -> Self
fn from(b: DragonHead) -> Self
Converts to this type from the input type.
Source§impl From<DragonWallHead> for BlockState
impl From<DragonWallHead> for BlockState
Source§fn from(b: DragonWallHead) -> Self
fn from(b: DragonWallHead) -> Self
Converts to this type from the input type.
Source§impl From<DriedKelpBlock> for BlockState
impl From<DriedKelpBlock> for BlockState
Source§fn from(b: DriedKelpBlock) -> Self
fn from(b: DriedKelpBlock) -> Self
Converts to this type from the input type.
Source§impl From<DripstoneBlock> for BlockState
impl From<DripstoneBlock> for BlockState
Source§fn from(b: DripstoneBlock) -> Self
fn from(b: DripstoneBlock) -> Self
Converts to this type from the input type.
Source§impl From<Dropper> for BlockState
impl From<Dropper> for BlockState
Source§impl From<EmeraldBlock> for BlockState
impl From<EmeraldBlock> for BlockState
Source§fn from(b: EmeraldBlock) -> Self
fn from(b: EmeraldBlock) -> Self
Converts to this type from the input type.
Source§impl From<EmeraldOre> for BlockState
impl From<EmeraldOre> for BlockState
Source§fn from(b: EmeraldOre) -> Self
fn from(b: EmeraldOre) -> Self
Converts to this type from the input type.
Source§impl From<EnchantingTable> for BlockState
impl From<EnchantingTable> for BlockState
Source§fn from(b: EnchantingTable) -> Self
fn from(b: EnchantingTable) -> Self
Converts to this type from the input type.
Source§impl From<EndGateway> for BlockState
impl From<EndGateway> for BlockState
Source§fn from(b: EndGateway) -> Self
fn from(b: EndGateway) -> Self
Converts to this type from the input type.
Source§impl From<EndPortal> for BlockState
impl From<EndPortal> for BlockState
Source§impl From<EndPortalFrame> for BlockState
impl From<EndPortalFrame> for BlockState
Source§fn from(b: EndPortalFrame) -> Self
fn from(b: EndPortalFrame) -> Self
Converts to this type from the input type.
Source§impl From<EndRod> for BlockState
impl From<EndRod> for BlockState
Source§impl From<EndStone> for BlockState
impl From<EndStone> for BlockState
Source§impl From<EndStoneBrickSlab> for BlockState
impl From<EndStoneBrickSlab> for BlockState
Source§fn from(b: EndStoneBrickSlab) -> Self
fn from(b: EndStoneBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<EndStoneBrickStairs> for BlockState
impl From<EndStoneBrickStairs> for BlockState
Source§fn from(b: EndStoneBrickStairs) -> Self
fn from(b: EndStoneBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<EndStoneBrickWall> for BlockState
impl From<EndStoneBrickWall> for BlockState
Source§fn from(b: EndStoneBrickWall) -> Self
fn from(b: EndStoneBrickWall) -> Self
Converts to this type from the input type.
Source§impl From<EndStoneBricks> for BlockState
impl From<EndStoneBricks> for BlockState
Source§fn from(b: EndStoneBricks) -> Self
fn from(b: EndStoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<EnderChest> for BlockState
impl From<EnderChest> for BlockState
Source§fn from(b: EnderChest) -> Self
fn from(b: EnderChest) -> Self
Converts to this type from the input type.
Source§impl From<ExposedChiseledCopper> for BlockState
impl From<ExposedChiseledCopper> for BlockState
Source§fn from(b: ExposedChiseledCopper) -> Self
fn from(b: ExposedChiseledCopper) -> Self
Converts to this type from the input type.
Source§impl From<ExposedCopper> for BlockState
impl From<ExposedCopper> for BlockState
Source§fn from(b: ExposedCopper) -> Self
fn from(b: ExposedCopper) -> Self
Converts to this type from the input type.
Source§impl From<ExposedCopperBulb> for BlockState
impl From<ExposedCopperBulb> for BlockState
Source§fn from(b: ExposedCopperBulb) -> Self
fn from(b: ExposedCopperBulb) -> Self
Converts to this type from the input type.
Source§impl From<ExposedCopperDoor> for BlockState
impl From<ExposedCopperDoor> for BlockState
Source§fn from(b: ExposedCopperDoor) -> Self
fn from(b: ExposedCopperDoor) -> Self
Converts to this type from the input type.
Source§impl From<ExposedCopperGrate> for BlockState
impl From<ExposedCopperGrate> for BlockState
Source§fn from(b: ExposedCopperGrate) -> Self
fn from(b: ExposedCopperGrate) -> Self
Converts to this type from the input type.
Source§impl From<ExposedCopperTrapdoor> for BlockState
impl From<ExposedCopperTrapdoor> for BlockState
Source§fn from(b: ExposedCopperTrapdoor) -> Self
fn from(b: ExposedCopperTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<ExposedCutCopper> for BlockState
impl From<ExposedCutCopper> for BlockState
Source§fn from(b: ExposedCutCopper) -> Self
fn from(b: ExposedCutCopper) -> Self
Converts to this type from the input type.
Source§impl From<ExposedCutCopperSlab> for BlockState
impl From<ExposedCutCopperSlab> for BlockState
Source§fn from(b: ExposedCutCopperSlab) -> Self
fn from(b: ExposedCutCopperSlab) -> Self
Converts to this type from the input type.
Source§impl From<ExposedCutCopperStairs> for BlockState
impl From<ExposedCutCopperStairs> for BlockState
Source§fn from(b: ExposedCutCopperStairs) -> Self
fn from(b: ExposedCutCopperStairs) -> Self
Converts to this type from the input type.
Source§impl From<Farmland> for BlockState
impl From<Farmland> for BlockState
Source§impl From<Fern> for BlockState
impl From<Fern> for BlockState
Source§impl From<Fire> for BlockState
impl From<Fire> for BlockState
Source§impl From<FireCoral> for BlockState
impl From<FireCoral> for BlockState
Source§impl From<FireCoralBlock> for BlockState
impl From<FireCoralBlock> for BlockState
Source§fn from(b: FireCoralBlock) -> Self
fn from(b: FireCoralBlock) -> Self
Converts to this type from the input type.
Source§impl From<FireCoralFan> for BlockState
impl From<FireCoralFan> for BlockState
Source§fn from(b: FireCoralFan) -> Self
fn from(b: FireCoralFan) -> Self
Converts to this type from the input type.
Source§impl From<FireCoralWallFan> for BlockState
impl From<FireCoralWallFan> for BlockState
Source§fn from(b: FireCoralWallFan) -> Self
fn from(b: FireCoralWallFan) -> Self
Converts to this type from the input type.
Source§impl From<FletchingTable> for BlockState
impl From<FletchingTable> for BlockState
Source§fn from(b: FletchingTable) -> Self
fn from(b: FletchingTable) -> Self
Converts to this type from the input type.
Source§impl From<FlowerPot> for BlockState
impl From<FlowerPot> for BlockState
Source§impl From<FloweringAzalea> for BlockState
impl From<FloweringAzalea> for BlockState
Source§fn from(b: FloweringAzalea) -> Self
fn from(b: FloweringAzalea) -> Self
Converts to this type from the input type.
Source§impl From<FloweringAzaleaLeaves> for BlockState
impl From<FloweringAzaleaLeaves> for BlockState
Source§fn from(b: FloweringAzaleaLeaves) -> Self
fn from(b: FloweringAzaleaLeaves) -> Self
Converts to this type from the input type.
Source§impl From<FluidState> for BlockState
impl From<FluidState> for BlockState
Source§fn from(state: FluidState) -> Self
fn from(state: FluidState) -> Self
Converts to this type from the input type.
Source§impl From<Frogspawn> for BlockState
impl From<Frogspawn> for BlockState
Source§impl From<FrostedIce> for BlockState
impl From<FrostedIce> for BlockState
Source§fn from(b: FrostedIce) -> Self
fn from(b: FrostedIce) -> Self
Converts to this type from the input type.
Source§impl From<Furnace> for BlockState
impl From<Furnace> for BlockState
Source§impl From<GildedBlackstone> for BlockState
impl From<GildedBlackstone> for BlockState
Source§fn from(b: GildedBlackstone) -> Self
fn from(b: GildedBlackstone) -> Self
Converts to this type from the input type.
Source§impl From<Glass> for BlockState
impl From<Glass> for BlockState
Source§impl From<GlassPane> for BlockState
impl From<GlassPane> for BlockState
Source§impl From<GlowLichen> for BlockState
impl From<GlowLichen> for BlockState
Source§fn from(b: GlowLichen) -> Self
fn from(b: GlowLichen) -> Self
Converts to this type from the input type.
Source§impl From<Glowstone> for BlockState
impl From<Glowstone> for BlockState
Source§impl From<GoldBlock> for BlockState
impl From<GoldBlock> for BlockState
Source§impl From<GoldOre> for BlockState
impl From<GoldOre> for BlockState
Source§impl From<Granite> for BlockState
impl From<Granite> for BlockState
Source§impl From<GraniteSlab> for BlockState
impl From<GraniteSlab> for BlockState
Source§fn from(b: GraniteSlab) -> Self
fn from(b: GraniteSlab) -> Self
Converts to this type from the input type.
Source§impl From<GraniteStairs> for BlockState
impl From<GraniteStairs> for BlockState
Source§fn from(b: GraniteStairs) -> Self
fn from(b: GraniteStairs) -> Self
Converts to this type from the input type.
Source§impl From<GraniteWall> for BlockState
impl From<GraniteWall> for BlockState
Source§fn from(b: GraniteWall) -> Self
fn from(b: GraniteWall) -> Self
Converts to this type from the input type.
Source§impl From<GrassBlock> for BlockState
impl From<GrassBlock> for BlockState
Source§fn from(b: GrassBlock) -> Self
fn from(b: GrassBlock) -> Self
Converts to this type from the input type.
Source§impl From<Gravel> for BlockState
impl From<Gravel> for BlockState
Source§impl From<GrayBanner> for BlockState
impl From<GrayBanner> for BlockState
Source§fn from(b: GrayBanner) -> Self
fn from(b: GrayBanner) -> Self
Converts to this type from the input type.
Source§impl From<GrayBed> for BlockState
impl From<GrayBed> for BlockState
Source§impl From<GrayCandle> for BlockState
impl From<GrayCandle> for BlockState
Source§fn from(b: GrayCandle) -> Self
fn from(b: GrayCandle) -> Self
Converts to this type from the input type.
Source§impl From<GrayCandleCake> for BlockState
impl From<GrayCandleCake> for BlockState
Source§fn from(b: GrayCandleCake) -> Self
fn from(b: GrayCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<GrayCarpet> for BlockState
impl From<GrayCarpet> for BlockState
Source§fn from(b: GrayCarpet) -> Self
fn from(b: GrayCarpet) -> Self
Converts to this type from the input type.
Source§impl From<GrayConcrete> for BlockState
impl From<GrayConcrete> for BlockState
Source§fn from(b: GrayConcrete) -> Self
fn from(b: GrayConcrete) -> Self
Converts to this type from the input type.
Source§impl From<GrayConcretePowder> for BlockState
impl From<GrayConcretePowder> for BlockState
Source§fn from(b: GrayConcretePowder) -> Self
fn from(b: GrayConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<GrayGlazedTerracotta> for BlockState
impl From<GrayGlazedTerracotta> for BlockState
Source§fn from(b: GrayGlazedTerracotta) -> Self
fn from(b: GrayGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<GrayShulkerBox> for BlockState
impl From<GrayShulkerBox> for BlockState
Source§fn from(b: GrayShulkerBox) -> Self
fn from(b: GrayShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<GrayStainedGlass> for BlockState
impl From<GrayStainedGlass> for BlockState
Source§fn from(b: GrayStainedGlass) -> Self
fn from(b: GrayStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<GrayStainedGlassPane> for BlockState
impl From<GrayStainedGlassPane> for BlockState
Source§fn from(b: GrayStainedGlassPane) -> Self
fn from(b: GrayStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<GrayTerracotta> for BlockState
impl From<GrayTerracotta> for BlockState
Source§fn from(b: GrayTerracotta) -> Self
fn from(b: GrayTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<GrayWallBanner> for BlockState
impl From<GrayWallBanner> for BlockState
Source§fn from(b: GrayWallBanner) -> Self
fn from(b: GrayWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<GrayWool> for BlockState
impl From<GrayWool> for BlockState
Source§impl From<GreenBanner> for BlockState
impl From<GreenBanner> for BlockState
Source§fn from(b: GreenBanner) -> Self
fn from(b: GreenBanner) -> Self
Converts to this type from the input type.
Source§impl From<GreenBed> for BlockState
impl From<GreenBed> for BlockState
Source§impl From<GreenCandle> for BlockState
impl From<GreenCandle> for BlockState
Source§fn from(b: GreenCandle) -> Self
fn from(b: GreenCandle) -> Self
Converts to this type from the input type.
Source§impl From<GreenCandleCake> for BlockState
impl From<GreenCandleCake> for BlockState
Source§fn from(b: GreenCandleCake) -> Self
fn from(b: GreenCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<GreenCarpet> for BlockState
impl From<GreenCarpet> for BlockState
Source§fn from(b: GreenCarpet) -> Self
fn from(b: GreenCarpet) -> Self
Converts to this type from the input type.
Source§impl From<GreenConcrete> for BlockState
impl From<GreenConcrete> for BlockState
Source§fn from(b: GreenConcrete) -> Self
fn from(b: GreenConcrete) -> Self
Converts to this type from the input type.
Source§impl From<GreenConcretePowder> for BlockState
impl From<GreenConcretePowder> for BlockState
Source§fn from(b: GreenConcretePowder) -> Self
fn from(b: GreenConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<GreenGlazedTerracotta> for BlockState
impl From<GreenGlazedTerracotta> for BlockState
Source§fn from(b: GreenGlazedTerracotta) -> Self
fn from(b: GreenGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<GreenShulkerBox> for BlockState
impl From<GreenShulkerBox> for BlockState
Source§fn from(b: GreenShulkerBox) -> Self
fn from(b: GreenShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<GreenStainedGlass> for BlockState
impl From<GreenStainedGlass> for BlockState
Source§fn from(b: GreenStainedGlass) -> Self
fn from(b: GreenStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<GreenStainedGlassPane> for BlockState
impl From<GreenStainedGlassPane> for BlockState
Source§fn from(b: GreenStainedGlassPane) -> Self
fn from(b: GreenStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<GreenTerracotta> for BlockState
impl From<GreenTerracotta> for BlockState
Source§fn from(b: GreenTerracotta) -> Self
fn from(b: GreenTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<GreenWallBanner> for BlockState
impl From<GreenWallBanner> for BlockState
Source§fn from(b: GreenWallBanner) -> Self
fn from(b: GreenWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<GreenWool> for BlockState
impl From<GreenWool> for BlockState
Source§impl From<Grindstone> for BlockState
impl From<Grindstone> for BlockState
Source§fn from(b: Grindstone) -> Self
fn from(b: Grindstone) -> Self
Converts to this type from the input type.
Source§impl From<HangingRoots> for BlockState
impl From<HangingRoots> for BlockState
Source§fn from(b: HangingRoots) -> Self
fn from(b: HangingRoots) -> Self
Converts to this type from the input type.
Source§impl From<HayBlock> for BlockState
impl From<HayBlock> for BlockState
Source§impl From<HeavyCore> for BlockState
impl From<HeavyCore> for BlockState
Source§impl From<HeavyWeightedPressurePlate> for BlockState
impl From<HeavyWeightedPressurePlate> for BlockState
Source§fn from(b: HeavyWeightedPressurePlate) -> Self
fn from(b: HeavyWeightedPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<HoneyBlock> for BlockState
impl From<HoneyBlock> for BlockState
Source§fn from(b: HoneyBlock) -> Self
fn from(b: HoneyBlock) -> Self
Converts to this type from the input type.
Source§impl From<HoneycombBlock> for BlockState
impl From<HoneycombBlock> for BlockState
Source§fn from(b: HoneycombBlock) -> Self
fn from(b: HoneycombBlock) -> Self
Converts to this type from the input type.
Source§impl From<Hopper> for BlockState
impl From<Hopper> for BlockState
Source§impl From<HornCoral> for BlockState
impl From<HornCoral> for BlockState
Source§impl From<HornCoralBlock> for BlockState
impl From<HornCoralBlock> for BlockState
Source§fn from(b: HornCoralBlock) -> Self
fn from(b: HornCoralBlock) -> Self
Converts to this type from the input type.
Source§impl From<HornCoralFan> for BlockState
impl From<HornCoralFan> for BlockState
Source§fn from(b: HornCoralFan) -> Self
fn from(b: HornCoralFan) -> Self
Converts to this type from the input type.
Source§impl From<HornCoralWallFan> for BlockState
impl From<HornCoralWallFan> for BlockState
Source§fn from(b: HornCoralWallFan) -> Self
fn from(b: HornCoralWallFan) -> Self
Converts to this type from the input type.
Source§impl From<Ice> for BlockState
impl From<Ice> for BlockState
Source§impl From<InfestedChiseledStoneBricks> for BlockState
impl From<InfestedChiseledStoneBricks> for BlockState
Source§fn from(b: InfestedChiseledStoneBricks) -> Self
fn from(b: InfestedChiseledStoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<InfestedCobblestone> for BlockState
impl From<InfestedCobblestone> for BlockState
Source§fn from(b: InfestedCobblestone) -> Self
fn from(b: InfestedCobblestone) -> Self
Converts to this type from the input type.
Source§impl From<InfestedCrackedStoneBricks> for BlockState
impl From<InfestedCrackedStoneBricks> for BlockState
Source§fn from(b: InfestedCrackedStoneBricks) -> Self
fn from(b: InfestedCrackedStoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<InfestedDeepslate> for BlockState
impl From<InfestedDeepslate> for BlockState
Source§fn from(b: InfestedDeepslate) -> Self
fn from(b: InfestedDeepslate) -> Self
Converts to this type from the input type.
Source§impl From<InfestedMossyStoneBricks> for BlockState
impl From<InfestedMossyStoneBricks> for BlockState
Source§fn from(b: InfestedMossyStoneBricks) -> Self
fn from(b: InfestedMossyStoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<InfestedStone> for BlockState
impl From<InfestedStone> for BlockState
Source§fn from(b: InfestedStone) -> Self
fn from(b: InfestedStone) -> Self
Converts to this type from the input type.
Source§impl From<InfestedStoneBricks> for BlockState
impl From<InfestedStoneBricks> for BlockState
Source§fn from(b: InfestedStoneBricks) -> Self
fn from(b: InfestedStoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<IronBars> for BlockState
impl From<IronBars> for BlockState
Source§impl From<IronBlock> for BlockState
impl From<IronBlock> for BlockState
Source§impl From<IronDoor> for BlockState
impl From<IronDoor> for BlockState
Source§impl From<IronOre> for BlockState
impl From<IronOre> for BlockState
Source§impl From<IronTrapdoor> for BlockState
impl From<IronTrapdoor> for BlockState
Source§fn from(b: IronTrapdoor) -> Self
fn from(b: IronTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<JackOLantern> for BlockState
impl From<JackOLantern> for BlockState
Source§fn from(b: JackOLantern) -> Self
fn from(b: JackOLantern) -> Self
Converts to this type from the input type.
Source§impl From<Jigsaw> for BlockState
impl From<Jigsaw> for BlockState
Source§impl From<Jukebox> for BlockState
impl From<Jukebox> for BlockState
Source§impl From<JungleButton> for BlockState
impl From<JungleButton> for BlockState
Source§fn from(b: JungleButton) -> Self
fn from(b: JungleButton) -> Self
Converts to this type from the input type.
Source§impl From<JungleDoor> for BlockState
impl From<JungleDoor> for BlockState
Source§fn from(b: JungleDoor) -> Self
fn from(b: JungleDoor) -> Self
Converts to this type from the input type.
Source§impl From<JungleFence> for BlockState
impl From<JungleFence> for BlockState
Source§fn from(b: JungleFence) -> Self
fn from(b: JungleFence) -> Self
Converts to this type from the input type.
Source§impl From<JungleFenceGate> for BlockState
impl From<JungleFenceGate> for BlockState
Source§fn from(b: JungleFenceGate) -> Self
fn from(b: JungleFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<JungleHangingSign> for BlockState
impl From<JungleHangingSign> for BlockState
Source§fn from(b: JungleHangingSign) -> Self
fn from(b: JungleHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<JungleLeaves> for BlockState
impl From<JungleLeaves> for BlockState
Source§fn from(b: JungleLeaves) -> Self
fn from(b: JungleLeaves) -> Self
Converts to this type from the input type.
Source§impl From<JungleLog> for BlockState
impl From<JungleLog> for BlockState
Source§impl From<JunglePlanks> for BlockState
impl From<JunglePlanks> for BlockState
Source§fn from(b: JunglePlanks) -> Self
fn from(b: JunglePlanks) -> Self
Converts to this type from the input type.
Source§impl From<JunglePressurePlate> for BlockState
impl From<JunglePressurePlate> for BlockState
Source§fn from(b: JunglePressurePlate) -> Self
fn from(b: JunglePressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<JungleSapling> for BlockState
impl From<JungleSapling> for BlockState
Source§fn from(b: JungleSapling) -> Self
fn from(b: JungleSapling) -> Self
Converts to this type from the input type.
Source§impl From<JungleSign> for BlockState
impl From<JungleSign> for BlockState
Source§fn from(b: JungleSign) -> Self
fn from(b: JungleSign) -> Self
Converts to this type from the input type.
Source§impl From<JungleSlab> for BlockState
impl From<JungleSlab> for BlockState
Source§fn from(b: JungleSlab) -> Self
fn from(b: JungleSlab) -> Self
Converts to this type from the input type.
Source§impl From<JungleStairs> for BlockState
impl From<JungleStairs> for BlockState
Source§fn from(b: JungleStairs) -> Self
fn from(b: JungleStairs) -> Self
Converts to this type from the input type.
Source§impl From<JungleTrapdoor> for BlockState
impl From<JungleTrapdoor> for BlockState
Source§fn from(b: JungleTrapdoor) -> Self
fn from(b: JungleTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<JungleWallHangingSign> for BlockState
impl From<JungleWallHangingSign> for BlockState
Source§fn from(b: JungleWallHangingSign) -> Self
fn from(b: JungleWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<JungleWallSign> for BlockState
impl From<JungleWallSign> for BlockState
Source§fn from(b: JungleWallSign) -> Self
fn from(b: JungleWallSign) -> Self
Converts to this type from the input type.
Source§impl From<JungleWood> for BlockState
impl From<JungleWood> for BlockState
Source§fn from(b: JungleWood) -> Self
fn from(b: JungleWood) -> Self
Converts to this type from the input type.
Source§impl From<Kelp> for BlockState
impl From<Kelp> for BlockState
Source§impl From<KelpPlant> for BlockState
impl From<KelpPlant> for BlockState
Source§impl From<Ladder> for BlockState
impl From<Ladder> for BlockState
Source§impl From<Lantern> for BlockState
impl From<Lantern> for BlockState
Source§impl From<LapisBlock> for BlockState
impl From<LapisBlock> for BlockState
Source§fn from(b: LapisBlock) -> Self
fn from(b: LapisBlock) -> Self
Converts to this type from the input type.
Source§impl From<LapisOre> for BlockState
impl From<LapisOre> for BlockState
Source§impl From<LargeAmethystBud> for BlockState
impl From<LargeAmethystBud> for BlockState
Source§fn from(b: LargeAmethystBud) -> Self
fn from(b: LargeAmethystBud) -> Self
Converts to this type from the input type.
Source§impl From<LargeFern> for BlockState
impl From<LargeFern> for BlockState
Source§impl From<Lava> for BlockState
impl From<Lava> for BlockState
Source§impl From<LavaCauldron> for BlockState
impl From<LavaCauldron> for BlockState
Source§fn from(b: LavaCauldron) -> Self
fn from(b: LavaCauldron) -> Self
Converts to this type from the input type.
Source§impl From<Lectern> for BlockState
impl From<Lectern> for BlockState
Source§impl From<Lever> for BlockState
impl From<Lever> for BlockState
Source§impl From<Light> for BlockState
impl From<Light> for BlockState
Source§impl From<LightBlueBanner> for BlockState
impl From<LightBlueBanner> for BlockState
Source§fn from(b: LightBlueBanner) -> Self
fn from(b: LightBlueBanner) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueBed> for BlockState
impl From<LightBlueBed> for BlockState
Source§fn from(b: LightBlueBed) -> Self
fn from(b: LightBlueBed) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueCandle> for BlockState
impl From<LightBlueCandle> for BlockState
Source§fn from(b: LightBlueCandle) -> Self
fn from(b: LightBlueCandle) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueCandleCake> for BlockState
impl From<LightBlueCandleCake> for BlockState
Source§fn from(b: LightBlueCandleCake) -> Self
fn from(b: LightBlueCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueCarpet> for BlockState
impl From<LightBlueCarpet> for BlockState
Source§fn from(b: LightBlueCarpet) -> Self
fn from(b: LightBlueCarpet) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueConcrete> for BlockState
impl From<LightBlueConcrete> for BlockState
Source§fn from(b: LightBlueConcrete) -> Self
fn from(b: LightBlueConcrete) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueConcretePowder> for BlockState
impl From<LightBlueConcretePowder> for BlockState
Source§fn from(b: LightBlueConcretePowder) -> Self
fn from(b: LightBlueConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueGlazedTerracotta> for BlockState
impl From<LightBlueGlazedTerracotta> for BlockState
Source§fn from(b: LightBlueGlazedTerracotta) -> Self
fn from(b: LightBlueGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueShulkerBox> for BlockState
impl From<LightBlueShulkerBox> for BlockState
Source§fn from(b: LightBlueShulkerBox) -> Self
fn from(b: LightBlueShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueStainedGlass> for BlockState
impl From<LightBlueStainedGlass> for BlockState
Source§fn from(b: LightBlueStainedGlass) -> Self
fn from(b: LightBlueStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueStainedGlassPane> for BlockState
impl From<LightBlueStainedGlassPane> for BlockState
Source§fn from(b: LightBlueStainedGlassPane) -> Self
fn from(b: LightBlueStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueTerracotta> for BlockState
impl From<LightBlueTerracotta> for BlockState
Source§fn from(b: LightBlueTerracotta) -> Self
fn from(b: LightBlueTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueWallBanner> for BlockState
impl From<LightBlueWallBanner> for BlockState
Source§fn from(b: LightBlueWallBanner) -> Self
fn from(b: LightBlueWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<LightBlueWool> for BlockState
impl From<LightBlueWool> for BlockState
Source§fn from(b: LightBlueWool) -> Self
fn from(b: LightBlueWool) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayBanner> for BlockState
impl From<LightGrayBanner> for BlockState
Source§fn from(b: LightGrayBanner) -> Self
fn from(b: LightGrayBanner) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayBed> for BlockState
impl From<LightGrayBed> for BlockState
Source§fn from(b: LightGrayBed) -> Self
fn from(b: LightGrayBed) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayCandle> for BlockState
impl From<LightGrayCandle> for BlockState
Source§fn from(b: LightGrayCandle) -> Self
fn from(b: LightGrayCandle) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayCandleCake> for BlockState
impl From<LightGrayCandleCake> for BlockState
Source§fn from(b: LightGrayCandleCake) -> Self
fn from(b: LightGrayCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayCarpet> for BlockState
impl From<LightGrayCarpet> for BlockState
Source§fn from(b: LightGrayCarpet) -> Self
fn from(b: LightGrayCarpet) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayConcrete> for BlockState
impl From<LightGrayConcrete> for BlockState
Source§fn from(b: LightGrayConcrete) -> Self
fn from(b: LightGrayConcrete) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayConcretePowder> for BlockState
impl From<LightGrayConcretePowder> for BlockState
Source§fn from(b: LightGrayConcretePowder) -> Self
fn from(b: LightGrayConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayGlazedTerracotta> for BlockState
impl From<LightGrayGlazedTerracotta> for BlockState
Source§fn from(b: LightGrayGlazedTerracotta) -> Self
fn from(b: LightGrayGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayShulkerBox> for BlockState
impl From<LightGrayShulkerBox> for BlockState
Source§fn from(b: LightGrayShulkerBox) -> Self
fn from(b: LightGrayShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayStainedGlass> for BlockState
impl From<LightGrayStainedGlass> for BlockState
Source§fn from(b: LightGrayStainedGlass) -> Self
fn from(b: LightGrayStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayStainedGlassPane> for BlockState
impl From<LightGrayStainedGlassPane> for BlockState
Source§fn from(b: LightGrayStainedGlassPane) -> Self
fn from(b: LightGrayStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayTerracotta> for BlockState
impl From<LightGrayTerracotta> for BlockState
Source§fn from(b: LightGrayTerracotta) -> Self
fn from(b: LightGrayTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayWallBanner> for BlockState
impl From<LightGrayWallBanner> for BlockState
Source§fn from(b: LightGrayWallBanner) -> Self
fn from(b: LightGrayWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<LightGrayWool> for BlockState
impl From<LightGrayWool> for BlockState
Source§fn from(b: LightGrayWool) -> Self
fn from(b: LightGrayWool) -> Self
Converts to this type from the input type.
Source§impl From<LightWeightedPressurePlate> for BlockState
impl From<LightWeightedPressurePlate> for BlockState
Source§fn from(b: LightWeightedPressurePlate) -> Self
fn from(b: LightWeightedPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<LightningRod> for BlockState
impl From<LightningRod> for BlockState
Source§fn from(b: LightningRod) -> Self
fn from(b: LightningRod) -> Self
Converts to this type from the input type.
Source§impl From<Lilac> for BlockState
impl From<Lilac> for BlockState
Source§impl From<LilyOfTheValley> for BlockState
impl From<LilyOfTheValley> for BlockState
Source§fn from(b: LilyOfTheValley) -> Self
fn from(b: LilyOfTheValley) -> Self
Converts to this type from the input type.
Source§impl From<LilyPad> for BlockState
impl From<LilyPad> for BlockState
Source§impl From<LimeBanner> for BlockState
impl From<LimeBanner> for BlockState
Source§fn from(b: LimeBanner) -> Self
fn from(b: LimeBanner) -> Self
Converts to this type from the input type.
Source§impl From<LimeBed> for BlockState
impl From<LimeBed> for BlockState
Source§impl From<LimeCandle> for BlockState
impl From<LimeCandle> for BlockState
Source§fn from(b: LimeCandle) -> Self
fn from(b: LimeCandle) -> Self
Converts to this type from the input type.
Source§impl From<LimeCandleCake> for BlockState
impl From<LimeCandleCake> for BlockState
Source§fn from(b: LimeCandleCake) -> Self
fn from(b: LimeCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<LimeCarpet> for BlockState
impl From<LimeCarpet> for BlockState
Source§fn from(b: LimeCarpet) -> Self
fn from(b: LimeCarpet) -> Self
Converts to this type from the input type.
Source§impl From<LimeConcrete> for BlockState
impl From<LimeConcrete> for BlockState
Source§fn from(b: LimeConcrete) -> Self
fn from(b: LimeConcrete) -> Self
Converts to this type from the input type.
Source§impl From<LimeConcretePowder> for BlockState
impl From<LimeConcretePowder> for BlockState
Source§fn from(b: LimeConcretePowder) -> Self
fn from(b: LimeConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<LimeGlazedTerracotta> for BlockState
impl From<LimeGlazedTerracotta> for BlockState
Source§fn from(b: LimeGlazedTerracotta) -> Self
fn from(b: LimeGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<LimeShulkerBox> for BlockState
impl From<LimeShulkerBox> for BlockState
Source§fn from(b: LimeShulkerBox) -> Self
fn from(b: LimeShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<LimeStainedGlass> for BlockState
impl From<LimeStainedGlass> for BlockState
Source§fn from(b: LimeStainedGlass) -> Self
fn from(b: LimeStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<LimeStainedGlassPane> for BlockState
impl From<LimeStainedGlassPane> for BlockState
Source§fn from(b: LimeStainedGlassPane) -> Self
fn from(b: LimeStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<LimeTerracotta> for BlockState
impl From<LimeTerracotta> for BlockState
Source§fn from(b: LimeTerracotta) -> Self
fn from(b: LimeTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<LimeWallBanner> for BlockState
impl From<LimeWallBanner> for BlockState
Source§fn from(b: LimeWallBanner) -> Self
fn from(b: LimeWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<LimeWool> for BlockState
impl From<LimeWool> for BlockState
Source§impl From<Lodestone> for BlockState
impl From<Lodestone> for BlockState
Source§impl From<Loom> for BlockState
impl From<Loom> for BlockState
Source§impl From<MagentaBanner> for BlockState
impl From<MagentaBanner> for BlockState
Source§fn from(b: MagentaBanner) -> Self
fn from(b: MagentaBanner) -> Self
Converts to this type from the input type.
Source§impl From<MagentaBed> for BlockState
impl From<MagentaBed> for BlockState
Source§fn from(b: MagentaBed) -> Self
fn from(b: MagentaBed) -> Self
Converts to this type from the input type.
Source§impl From<MagentaCandle> for BlockState
impl From<MagentaCandle> for BlockState
Source§fn from(b: MagentaCandle) -> Self
fn from(b: MagentaCandle) -> Self
Converts to this type from the input type.
Source§impl From<MagentaCandleCake> for BlockState
impl From<MagentaCandleCake> for BlockState
Source§fn from(b: MagentaCandleCake) -> Self
fn from(b: MagentaCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<MagentaCarpet> for BlockState
impl From<MagentaCarpet> for BlockState
Source§fn from(b: MagentaCarpet) -> Self
fn from(b: MagentaCarpet) -> Self
Converts to this type from the input type.
Source§impl From<MagentaConcrete> for BlockState
impl From<MagentaConcrete> for BlockState
Source§fn from(b: MagentaConcrete) -> Self
fn from(b: MagentaConcrete) -> Self
Converts to this type from the input type.
Source§impl From<MagentaConcretePowder> for BlockState
impl From<MagentaConcretePowder> for BlockState
Source§fn from(b: MagentaConcretePowder) -> Self
fn from(b: MagentaConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<MagentaGlazedTerracotta> for BlockState
impl From<MagentaGlazedTerracotta> for BlockState
Source§fn from(b: MagentaGlazedTerracotta) -> Self
fn from(b: MagentaGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<MagentaShulkerBox> for BlockState
impl From<MagentaShulkerBox> for BlockState
Source§fn from(b: MagentaShulkerBox) -> Self
fn from(b: MagentaShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<MagentaStainedGlass> for BlockState
impl From<MagentaStainedGlass> for BlockState
Source§fn from(b: MagentaStainedGlass) -> Self
fn from(b: MagentaStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<MagentaStainedGlassPane> for BlockState
impl From<MagentaStainedGlassPane> for BlockState
Source§fn from(b: MagentaStainedGlassPane) -> Self
fn from(b: MagentaStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<MagentaTerracotta> for BlockState
impl From<MagentaTerracotta> for BlockState
Source§fn from(b: MagentaTerracotta) -> Self
fn from(b: MagentaTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<MagentaWallBanner> for BlockState
impl From<MagentaWallBanner> for BlockState
Source§fn from(b: MagentaWallBanner) -> Self
fn from(b: MagentaWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<MagentaWool> for BlockState
impl From<MagentaWool> for BlockState
Source§fn from(b: MagentaWool) -> Self
fn from(b: MagentaWool) -> Self
Converts to this type from the input type.
Source§impl From<MagmaBlock> for BlockState
impl From<MagmaBlock> for BlockState
Source§fn from(b: MagmaBlock) -> Self
fn from(b: MagmaBlock) -> Self
Converts to this type from the input type.
Source§impl From<MangroveButton> for BlockState
impl From<MangroveButton> for BlockState
Source§fn from(b: MangroveButton) -> Self
fn from(b: MangroveButton) -> Self
Converts to this type from the input type.
Source§impl From<MangroveDoor> for BlockState
impl From<MangroveDoor> for BlockState
Source§fn from(b: MangroveDoor) -> Self
fn from(b: MangroveDoor) -> Self
Converts to this type from the input type.
Source§impl From<MangroveFence> for BlockState
impl From<MangroveFence> for BlockState
Source§fn from(b: MangroveFence) -> Self
fn from(b: MangroveFence) -> Self
Converts to this type from the input type.
Source§impl From<MangroveFenceGate> for BlockState
impl From<MangroveFenceGate> for BlockState
Source§fn from(b: MangroveFenceGate) -> Self
fn from(b: MangroveFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<MangroveHangingSign> for BlockState
impl From<MangroveHangingSign> for BlockState
Source§fn from(b: MangroveHangingSign) -> Self
fn from(b: MangroveHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<MangroveLeaves> for BlockState
impl From<MangroveLeaves> for BlockState
Source§fn from(b: MangroveLeaves) -> Self
fn from(b: MangroveLeaves) -> Self
Converts to this type from the input type.
Source§impl From<MangroveLog> for BlockState
impl From<MangroveLog> for BlockState
Source§fn from(b: MangroveLog) -> Self
fn from(b: MangroveLog) -> Self
Converts to this type from the input type.
Source§impl From<MangrovePlanks> for BlockState
impl From<MangrovePlanks> for BlockState
Source§fn from(b: MangrovePlanks) -> Self
fn from(b: MangrovePlanks) -> Self
Converts to this type from the input type.
Source§impl From<MangrovePressurePlate> for BlockState
impl From<MangrovePressurePlate> for BlockState
Source§fn from(b: MangrovePressurePlate) -> Self
fn from(b: MangrovePressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<MangrovePropagule> for BlockState
impl From<MangrovePropagule> for BlockState
Source§fn from(b: MangrovePropagule) -> Self
fn from(b: MangrovePropagule) -> Self
Converts to this type from the input type.
Source§impl From<MangroveRoots> for BlockState
impl From<MangroveRoots> for BlockState
Source§fn from(b: MangroveRoots) -> Self
fn from(b: MangroveRoots) -> Self
Converts to this type from the input type.
Source§impl From<MangroveSign> for BlockState
impl From<MangroveSign> for BlockState
Source§fn from(b: MangroveSign) -> Self
fn from(b: MangroveSign) -> Self
Converts to this type from the input type.
Source§impl From<MangroveSlab> for BlockState
impl From<MangroveSlab> for BlockState
Source§fn from(b: MangroveSlab) -> Self
fn from(b: MangroveSlab) -> Self
Converts to this type from the input type.
Source§impl From<MangroveStairs> for BlockState
impl From<MangroveStairs> for BlockState
Source§fn from(b: MangroveStairs) -> Self
fn from(b: MangroveStairs) -> Self
Converts to this type from the input type.
Source§impl From<MangroveTrapdoor> for BlockState
impl From<MangroveTrapdoor> for BlockState
Source§fn from(b: MangroveTrapdoor) -> Self
fn from(b: MangroveTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<MangroveWallHangingSign> for BlockState
impl From<MangroveWallHangingSign> for BlockState
Source§fn from(b: MangroveWallHangingSign) -> Self
fn from(b: MangroveWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<MangroveWallSign> for BlockState
impl From<MangroveWallSign> for BlockState
Source§fn from(b: MangroveWallSign) -> Self
fn from(b: MangroveWallSign) -> Self
Converts to this type from the input type.
Source§impl From<MangroveWood> for BlockState
impl From<MangroveWood> for BlockState
Source§fn from(b: MangroveWood) -> Self
fn from(b: MangroveWood) -> Self
Converts to this type from the input type.
Source§impl From<MediumAmethystBud> for BlockState
impl From<MediumAmethystBud> for BlockState
Source§fn from(b: MediumAmethystBud) -> Self
fn from(b: MediumAmethystBud) -> Self
Converts to this type from the input type.
Source§impl From<Melon> for BlockState
impl From<Melon> for BlockState
Source§impl From<MelonStem> for BlockState
impl From<MelonStem> for BlockState
Source§impl From<MossBlock> for BlockState
impl From<MossBlock> for BlockState
Source§impl From<MossCarpet> for BlockState
impl From<MossCarpet> for BlockState
Source§fn from(b: MossCarpet) -> Self
fn from(b: MossCarpet) -> Self
Converts to this type from the input type.
Source§impl From<MossyCobblestone> for BlockState
impl From<MossyCobblestone> for BlockState
Source§fn from(b: MossyCobblestone) -> Self
fn from(b: MossyCobblestone) -> Self
Converts to this type from the input type.
Source§impl From<MossyCobblestoneSlab> for BlockState
impl From<MossyCobblestoneSlab> for BlockState
Source§fn from(b: MossyCobblestoneSlab) -> Self
fn from(b: MossyCobblestoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<MossyCobblestoneStairs> for BlockState
impl From<MossyCobblestoneStairs> for BlockState
Source§fn from(b: MossyCobblestoneStairs) -> Self
fn from(b: MossyCobblestoneStairs) -> Self
Converts to this type from the input type.
Source§impl From<MossyCobblestoneWall> for BlockState
impl From<MossyCobblestoneWall> for BlockState
Source§fn from(b: MossyCobblestoneWall) -> Self
fn from(b: MossyCobblestoneWall) -> Self
Converts to this type from the input type.
Source§impl From<MossyStoneBrickSlab> for BlockState
impl From<MossyStoneBrickSlab> for BlockState
Source§fn from(b: MossyStoneBrickSlab) -> Self
fn from(b: MossyStoneBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<MossyStoneBrickStairs> for BlockState
impl From<MossyStoneBrickStairs> for BlockState
Source§fn from(b: MossyStoneBrickStairs) -> Self
fn from(b: MossyStoneBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<MossyStoneBrickWall> for BlockState
impl From<MossyStoneBrickWall> for BlockState
Source§fn from(b: MossyStoneBrickWall) -> Self
fn from(b: MossyStoneBrickWall) -> Self
Converts to this type from the input type.
Source§impl From<MossyStoneBricks> for BlockState
impl From<MossyStoneBricks> for BlockState
Source§fn from(b: MossyStoneBricks) -> Self
fn from(b: MossyStoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<MovingPiston> for BlockState
impl From<MovingPiston> for BlockState
Source§fn from(b: MovingPiston) -> Self
fn from(b: MovingPiston) -> Self
Converts to this type from the input type.
Source§impl From<Mud> for BlockState
impl From<Mud> for BlockState
Source§impl From<MudBrickSlab> for BlockState
impl From<MudBrickSlab> for BlockState
Source§fn from(b: MudBrickSlab) -> Self
fn from(b: MudBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<MudBrickStairs> for BlockState
impl From<MudBrickStairs> for BlockState
Source§fn from(b: MudBrickStairs) -> Self
fn from(b: MudBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<MudBrickWall> for BlockState
impl From<MudBrickWall> for BlockState
Source§fn from(b: MudBrickWall) -> Self
fn from(b: MudBrickWall) -> Self
Converts to this type from the input type.
Source§impl From<MudBricks> for BlockState
impl From<MudBricks> for BlockState
Source§impl From<MuddyMangroveRoots> for BlockState
impl From<MuddyMangroveRoots> for BlockState
Source§fn from(b: MuddyMangroveRoots) -> Self
fn from(b: MuddyMangroveRoots) -> Self
Converts to this type from the input type.
Source§impl From<MushroomStem> for BlockState
impl From<MushroomStem> for BlockState
Source§fn from(b: MushroomStem) -> Self
fn from(b: MushroomStem) -> Self
Converts to this type from the input type.
Source§impl From<Mycelium> for BlockState
impl From<Mycelium> for BlockState
Source§impl From<NetherBrickFence> for BlockState
impl From<NetherBrickFence> for BlockState
Source§fn from(b: NetherBrickFence) -> Self
fn from(b: NetherBrickFence) -> Self
Converts to this type from the input type.
Source§impl From<NetherBrickSlab> for BlockState
impl From<NetherBrickSlab> for BlockState
Source§fn from(b: NetherBrickSlab) -> Self
fn from(b: NetherBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<NetherBrickStairs> for BlockState
impl From<NetherBrickStairs> for BlockState
Source§fn from(b: NetherBrickStairs) -> Self
fn from(b: NetherBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<NetherBrickWall> for BlockState
impl From<NetherBrickWall> for BlockState
Source§fn from(b: NetherBrickWall) -> Self
fn from(b: NetherBrickWall) -> Self
Converts to this type from the input type.
Source§impl From<NetherBricks> for BlockState
impl From<NetherBricks> for BlockState
Source§fn from(b: NetherBricks) -> Self
fn from(b: NetherBricks) -> Self
Converts to this type from the input type.
Source§impl From<NetherGoldOre> for BlockState
impl From<NetherGoldOre> for BlockState
Source§fn from(b: NetherGoldOre) -> Self
fn from(b: NetherGoldOre) -> Self
Converts to this type from the input type.
Source§impl From<NetherPortal> for BlockState
impl From<NetherPortal> for BlockState
Source§fn from(b: NetherPortal) -> Self
fn from(b: NetherPortal) -> Self
Converts to this type from the input type.
Source§impl From<NetherQuartzOre> for BlockState
impl From<NetherQuartzOre> for BlockState
Source§fn from(b: NetherQuartzOre) -> Self
fn from(b: NetherQuartzOre) -> Self
Converts to this type from the input type.
Source§impl From<NetherSprouts> for BlockState
impl From<NetherSprouts> for BlockState
Source§fn from(b: NetherSprouts) -> Self
fn from(b: NetherSprouts) -> Self
Converts to this type from the input type.
Source§impl From<NetherWart> for BlockState
impl From<NetherWart> for BlockState
Source§fn from(b: NetherWart) -> Self
fn from(b: NetherWart) -> Self
Converts to this type from the input type.
Source§impl From<NetherWartBlock> for BlockState
impl From<NetherWartBlock> for BlockState
Source§fn from(b: NetherWartBlock) -> Self
fn from(b: NetherWartBlock) -> Self
Converts to this type from the input type.
Source§impl From<NetheriteBlock> for BlockState
impl From<NetheriteBlock> for BlockState
Source§fn from(b: NetheriteBlock) -> Self
fn from(b: NetheriteBlock) -> Self
Converts to this type from the input type.
Source§impl From<Netherrack> for BlockState
impl From<Netherrack> for BlockState
Source§fn from(b: Netherrack) -> Self
fn from(b: Netherrack) -> Self
Converts to this type from the input type.
Source§impl From<NoteBlock> for BlockState
impl From<NoteBlock> for BlockState
Source§impl From<OakButton> for BlockState
impl From<OakButton> for BlockState
Source§impl From<OakDoor> for BlockState
impl From<OakDoor> for BlockState
Source§impl From<OakFence> for BlockState
impl From<OakFence> for BlockState
Source§impl From<OakFenceGate> for BlockState
impl From<OakFenceGate> for BlockState
Source§fn from(b: OakFenceGate) -> Self
fn from(b: OakFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<OakHangingSign> for BlockState
impl From<OakHangingSign> for BlockState
Source§fn from(b: OakHangingSign) -> Self
fn from(b: OakHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<OakLeaves> for BlockState
impl From<OakLeaves> for BlockState
Source§impl From<OakLog> for BlockState
impl From<OakLog> for BlockState
Source§impl From<OakPlanks> for BlockState
impl From<OakPlanks> for BlockState
Source§impl From<OakPressurePlate> for BlockState
impl From<OakPressurePlate> for BlockState
Source§fn from(b: OakPressurePlate) -> Self
fn from(b: OakPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<OakSapling> for BlockState
impl From<OakSapling> for BlockState
Source§fn from(b: OakSapling) -> Self
fn from(b: OakSapling) -> Self
Converts to this type from the input type.
Source§impl From<OakSign> for BlockState
impl From<OakSign> for BlockState
Source§impl From<OakSlab> for BlockState
impl From<OakSlab> for BlockState
Source§impl From<OakStairs> for BlockState
impl From<OakStairs> for BlockState
Source§impl From<OakTrapdoor> for BlockState
impl From<OakTrapdoor> for BlockState
Source§fn from(b: OakTrapdoor) -> Self
fn from(b: OakTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<OakWallHangingSign> for BlockState
impl From<OakWallHangingSign> for BlockState
Source§fn from(b: OakWallHangingSign) -> Self
fn from(b: OakWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<OakWallSign> for BlockState
impl From<OakWallSign> for BlockState
Source§fn from(b: OakWallSign) -> Self
fn from(b: OakWallSign) -> Self
Converts to this type from the input type.
Source§impl From<OakWood> for BlockState
impl From<OakWood> for BlockState
Source§impl From<Observer> for BlockState
impl From<Observer> for BlockState
Source§impl From<Obsidian> for BlockState
impl From<Obsidian> for BlockState
Source§impl From<OchreFroglight> for BlockState
impl From<OchreFroglight> for BlockState
Source§fn from(b: OchreFroglight) -> Self
fn from(b: OchreFroglight) -> Self
Converts to this type from the input type.
Source§impl From<OpenEyeblossom> for BlockState
impl From<OpenEyeblossom> for BlockState
Source§fn from(b: OpenEyeblossom) -> Self
fn from(b: OpenEyeblossom) -> Self
Converts to this type from the input type.
Source§impl From<OrangeBanner> for BlockState
impl From<OrangeBanner> for BlockState
Source§fn from(b: OrangeBanner) -> Self
fn from(b: OrangeBanner) -> Self
Converts to this type from the input type.
Source§impl From<OrangeBed> for BlockState
impl From<OrangeBed> for BlockState
Source§impl From<OrangeCandle> for BlockState
impl From<OrangeCandle> for BlockState
Source§fn from(b: OrangeCandle) -> Self
fn from(b: OrangeCandle) -> Self
Converts to this type from the input type.
Source§impl From<OrangeCandleCake> for BlockState
impl From<OrangeCandleCake> for BlockState
Source§fn from(b: OrangeCandleCake) -> Self
fn from(b: OrangeCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<OrangeCarpet> for BlockState
impl From<OrangeCarpet> for BlockState
Source§fn from(b: OrangeCarpet) -> Self
fn from(b: OrangeCarpet) -> Self
Converts to this type from the input type.
Source§impl From<OrangeConcrete> for BlockState
impl From<OrangeConcrete> for BlockState
Source§fn from(b: OrangeConcrete) -> Self
fn from(b: OrangeConcrete) -> Self
Converts to this type from the input type.
Source§impl From<OrangeConcretePowder> for BlockState
impl From<OrangeConcretePowder> for BlockState
Source§fn from(b: OrangeConcretePowder) -> Self
fn from(b: OrangeConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<OrangeGlazedTerracotta> for BlockState
impl From<OrangeGlazedTerracotta> for BlockState
Source§fn from(b: OrangeGlazedTerracotta) -> Self
fn from(b: OrangeGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<OrangeShulkerBox> for BlockState
impl From<OrangeShulkerBox> for BlockState
Source§fn from(b: OrangeShulkerBox) -> Self
fn from(b: OrangeShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<OrangeStainedGlass> for BlockState
impl From<OrangeStainedGlass> for BlockState
Source§fn from(b: OrangeStainedGlass) -> Self
fn from(b: OrangeStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<OrangeStainedGlassPane> for BlockState
impl From<OrangeStainedGlassPane> for BlockState
Source§fn from(b: OrangeStainedGlassPane) -> Self
fn from(b: OrangeStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<OrangeTerracotta> for BlockState
impl From<OrangeTerracotta> for BlockState
Source§fn from(b: OrangeTerracotta) -> Self
fn from(b: OrangeTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<OrangeTulip> for BlockState
impl From<OrangeTulip> for BlockState
Source§fn from(b: OrangeTulip) -> Self
fn from(b: OrangeTulip) -> Self
Converts to this type from the input type.
Source§impl From<OrangeWallBanner> for BlockState
impl From<OrangeWallBanner> for BlockState
Source§fn from(b: OrangeWallBanner) -> Self
fn from(b: OrangeWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<OrangeWool> for BlockState
impl From<OrangeWool> for BlockState
Source§fn from(b: OrangeWool) -> Self
fn from(b: OrangeWool) -> Self
Converts to this type from the input type.
Source§impl From<OxeyeDaisy> for BlockState
impl From<OxeyeDaisy> for BlockState
Source§fn from(b: OxeyeDaisy) -> Self
fn from(b: OxeyeDaisy) -> Self
Converts to this type from the input type.
Source§impl From<OxidizedChiseledCopper> for BlockState
impl From<OxidizedChiseledCopper> for BlockState
Source§fn from(b: OxidizedChiseledCopper) -> Self
fn from(b: OxidizedChiseledCopper) -> Self
Converts to this type from the input type.
Source§impl From<OxidizedCopper> for BlockState
impl From<OxidizedCopper> for BlockState
Source§fn from(b: OxidizedCopper) -> Self
fn from(b: OxidizedCopper) -> Self
Converts to this type from the input type.
Source§impl From<OxidizedCopperBulb> for BlockState
impl From<OxidizedCopperBulb> for BlockState
Source§fn from(b: OxidizedCopperBulb) -> Self
fn from(b: OxidizedCopperBulb) -> Self
Converts to this type from the input type.
Source§impl From<OxidizedCopperDoor> for BlockState
impl From<OxidizedCopperDoor> for BlockState
Source§fn from(b: OxidizedCopperDoor) -> Self
fn from(b: OxidizedCopperDoor) -> Self
Converts to this type from the input type.
Source§impl From<OxidizedCopperGrate> for BlockState
impl From<OxidizedCopperGrate> for BlockState
Source§fn from(b: OxidizedCopperGrate) -> Self
fn from(b: OxidizedCopperGrate) -> Self
Converts to this type from the input type.
Source§impl From<OxidizedCopperTrapdoor> for BlockState
impl From<OxidizedCopperTrapdoor> for BlockState
Source§fn from(b: OxidizedCopperTrapdoor) -> Self
fn from(b: OxidizedCopperTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<OxidizedCutCopper> for BlockState
impl From<OxidizedCutCopper> for BlockState
Source§fn from(b: OxidizedCutCopper) -> Self
fn from(b: OxidizedCutCopper) -> Self
Converts to this type from the input type.
Source§impl From<OxidizedCutCopperSlab> for BlockState
impl From<OxidizedCutCopperSlab> for BlockState
Source§fn from(b: OxidizedCutCopperSlab) -> Self
fn from(b: OxidizedCutCopperSlab) -> Self
Converts to this type from the input type.
Source§impl From<OxidizedCutCopperStairs> for BlockState
impl From<OxidizedCutCopperStairs> for BlockState
Source§fn from(b: OxidizedCutCopperStairs) -> Self
fn from(b: OxidizedCutCopperStairs) -> Self
Converts to this type from the input type.
Source§impl From<PackedIce> for BlockState
impl From<PackedIce> for BlockState
Source§impl From<PackedMud> for BlockState
impl From<PackedMud> for BlockState
Source§impl From<PaleHangingMoss> for BlockState
impl From<PaleHangingMoss> for BlockState
Source§fn from(b: PaleHangingMoss) -> Self
fn from(b: PaleHangingMoss) -> Self
Converts to this type from the input type.
Source§impl From<PaleMossBlock> for BlockState
impl From<PaleMossBlock> for BlockState
Source§fn from(b: PaleMossBlock) -> Self
fn from(b: PaleMossBlock) -> Self
Converts to this type from the input type.
Source§impl From<PaleMossCarpet> for BlockState
impl From<PaleMossCarpet> for BlockState
Source§fn from(b: PaleMossCarpet) -> Self
fn from(b: PaleMossCarpet) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakButton> for BlockState
impl From<PaleOakButton> for BlockState
Source§fn from(b: PaleOakButton) -> Self
fn from(b: PaleOakButton) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakDoor> for BlockState
impl From<PaleOakDoor> for BlockState
Source§fn from(b: PaleOakDoor) -> Self
fn from(b: PaleOakDoor) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakFence> for BlockState
impl From<PaleOakFence> for BlockState
Source§fn from(b: PaleOakFence) -> Self
fn from(b: PaleOakFence) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakFenceGate> for BlockState
impl From<PaleOakFenceGate> for BlockState
Source§fn from(b: PaleOakFenceGate) -> Self
fn from(b: PaleOakFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakHangingSign> for BlockState
impl From<PaleOakHangingSign> for BlockState
Source§fn from(b: PaleOakHangingSign) -> Self
fn from(b: PaleOakHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakLeaves> for BlockState
impl From<PaleOakLeaves> for BlockState
Source§fn from(b: PaleOakLeaves) -> Self
fn from(b: PaleOakLeaves) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakLog> for BlockState
impl From<PaleOakLog> for BlockState
Source§fn from(b: PaleOakLog) -> Self
fn from(b: PaleOakLog) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakPlanks> for BlockState
impl From<PaleOakPlanks> for BlockState
Source§fn from(b: PaleOakPlanks) -> Self
fn from(b: PaleOakPlanks) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakPressurePlate> for BlockState
impl From<PaleOakPressurePlate> for BlockState
Source§fn from(b: PaleOakPressurePlate) -> Self
fn from(b: PaleOakPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakSapling> for BlockState
impl From<PaleOakSapling> for BlockState
Source§fn from(b: PaleOakSapling) -> Self
fn from(b: PaleOakSapling) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakSign> for BlockState
impl From<PaleOakSign> for BlockState
Source§fn from(b: PaleOakSign) -> Self
fn from(b: PaleOakSign) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakSlab> for BlockState
impl From<PaleOakSlab> for BlockState
Source§fn from(b: PaleOakSlab) -> Self
fn from(b: PaleOakSlab) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakStairs> for BlockState
impl From<PaleOakStairs> for BlockState
Source§fn from(b: PaleOakStairs) -> Self
fn from(b: PaleOakStairs) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakTrapdoor> for BlockState
impl From<PaleOakTrapdoor> for BlockState
Source§fn from(b: PaleOakTrapdoor) -> Self
fn from(b: PaleOakTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakWallHangingSign> for BlockState
impl From<PaleOakWallHangingSign> for BlockState
Source§fn from(b: PaleOakWallHangingSign) -> Self
fn from(b: PaleOakWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakWallSign> for BlockState
impl From<PaleOakWallSign> for BlockState
Source§fn from(b: PaleOakWallSign) -> Self
fn from(b: PaleOakWallSign) -> Self
Converts to this type from the input type.
Source§impl From<PaleOakWood> for BlockState
impl From<PaleOakWood> for BlockState
Source§fn from(b: PaleOakWood) -> Self
fn from(b: PaleOakWood) -> Self
Converts to this type from the input type.
Source§impl From<PearlescentFroglight> for BlockState
impl From<PearlescentFroglight> for BlockState
Source§fn from(b: PearlescentFroglight) -> Self
fn from(b: PearlescentFroglight) -> Self
Converts to this type from the input type.
Source§impl From<Peony> for BlockState
impl From<Peony> for BlockState
Source§impl From<PetrifiedOakSlab> for BlockState
impl From<PetrifiedOakSlab> for BlockState
Source§fn from(b: PetrifiedOakSlab) -> Self
fn from(b: PetrifiedOakSlab) -> Self
Converts to this type from the input type.
Source§impl From<PiglinHead> for BlockState
impl From<PiglinHead> for BlockState
Source§fn from(b: PiglinHead) -> Self
fn from(b: PiglinHead) -> Self
Converts to this type from the input type.
Source§impl From<PiglinWallHead> for BlockState
impl From<PiglinWallHead> for BlockState
Source§fn from(b: PiglinWallHead) -> Self
fn from(b: PiglinWallHead) -> Self
Converts to this type from the input type.
Source§impl From<PinkBanner> for BlockState
impl From<PinkBanner> for BlockState
Source§fn from(b: PinkBanner) -> Self
fn from(b: PinkBanner) -> Self
Converts to this type from the input type.
Source§impl From<PinkBed> for BlockState
impl From<PinkBed> for BlockState
Source§impl From<PinkCandle> for BlockState
impl From<PinkCandle> for BlockState
Source§fn from(b: PinkCandle) -> Self
fn from(b: PinkCandle) -> Self
Converts to this type from the input type.
Source§impl From<PinkCandleCake> for BlockState
impl From<PinkCandleCake> for BlockState
Source§fn from(b: PinkCandleCake) -> Self
fn from(b: PinkCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<PinkCarpet> for BlockState
impl From<PinkCarpet> for BlockState
Source§fn from(b: PinkCarpet) -> Self
fn from(b: PinkCarpet) -> Self
Converts to this type from the input type.
Source§impl From<PinkConcrete> for BlockState
impl From<PinkConcrete> for BlockState
Source§fn from(b: PinkConcrete) -> Self
fn from(b: PinkConcrete) -> Self
Converts to this type from the input type.
Source§impl From<PinkConcretePowder> for BlockState
impl From<PinkConcretePowder> for BlockState
Source§fn from(b: PinkConcretePowder) -> Self
fn from(b: PinkConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<PinkGlazedTerracotta> for BlockState
impl From<PinkGlazedTerracotta> for BlockState
Source§fn from(b: PinkGlazedTerracotta) -> Self
fn from(b: PinkGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<PinkPetals> for BlockState
impl From<PinkPetals> for BlockState
Source§fn from(b: PinkPetals) -> Self
fn from(b: PinkPetals) -> Self
Converts to this type from the input type.
Source§impl From<PinkShulkerBox> for BlockState
impl From<PinkShulkerBox> for BlockState
Source§fn from(b: PinkShulkerBox) -> Self
fn from(b: PinkShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<PinkStainedGlass> for BlockState
impl From<PinkStainedGlass> for BlockState
Source§fn from(b: PinkStainedGlass) -> Self
fn from(b: PinkStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<PinkStainedGlassPane> for BlockState
impl From<PinkStainedGlassPane> for BlockState
Source§fn from(b: PinkStainedGlassPane) -> Self
fn from(b: PinkStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<PinkTerracotta> for BlockState
impl From<PinkTerracotta> for BlockState
Source§fn from(b: PinkTerracotta) -> Self
fn from(b: PinkTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<PinkTulip> for BlockState
impl From<PinkTulip> for BlockState
Source§impl From<PinkWallBanner> for BlockState
impl From<PinkWallBanner> for BlockState
Source§fn from(b: PinkWallBanner) -> Self
fn from(b: PinkWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<PinkWool> for BlockState
impl From<PinkWool> for BlockState
Source§impl From<Piston> for BlockState
impl From<Piston> for BlockState
Source§impl From<PistonHead> for BlockState
impl From<PistonHead> for BlockState
Source§fn from(b: PistonHead) -> Self
fn from(b: PistonHead) -> Self
Converts to this type from the input type.
Source§impl From<PitcherCrop> for BlockState
impl From<PitcherCrop> for BlockState
Source§fn from(b: PitcherCrop) -> Self
fn from(b: PitcherCrop) -> Self
Converts to this type from the input type.
Source§impl From<PitcherPlant> for BlockState
impl From<PitcherPlant> for BlockState
Source§fn from(b: PitcherPlant) -> Self
fn from(b: PitcherPlant) -> Self
Converts to this type from the input type.
Source§impl From<PlayerHead> for BlockState
impl From<PlayerHead> for BlockState
Source§fn from(b: PlayerHead) -> Self
fn from(b: PlayerHead) -> Self
Converts to this type from the input type.
Source§impl From<PlayerWallHead> for BlockState
impl From<PlayerWallHead> for BlockState
Source§fn from(b: PlayerWallHead) -> Self
fn from(b: PlayerWallHead) -> Self
Converts to this type from the input type.
Source§impl From<Podzol> for BlockState
impl From<Podzol> for BlockState
Source§impl From<PointedDripstone> for BlockState
impl From<PointedDripstone> for BlockState
Source§fn from(b: PointedDripstone) -> Self
fn from(b: PointedDripstone) -> Self
Converts to this type from the input type.
Source§impl From<PolishedAndesite> for BlockState
impl From<PolishedAndesite> for BlockState
Source§fn from(b: PolishedAndesite) -> Self
fn from(b: PolishedAndesite) -> Self
Converts to this type from the input type.
Source§impl From<PolishedAndesiteSlab> for BlockState
impl From<PolishedAndesiteSlab> for BlockState
Source§fn from(b: PolishedAndesiteSlab) -> Self
fn from(b: PolishedAndesiteSlab) -> Self
Converts to this type from the input type.
Source§impl From<PolishedAndesiteStairs> for BlockState
impl From<PolishedAndesiteStairs> for BlockState
Source§fn from(b: PolishedAndesiteStairs) -> Self
fn from(b: PolishedAndesiteStairs) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBasalt> for BlockState
impl From<PolishedBasalt> for BlockState
Source§fn from(b: PolishedBasalt) -> Self
fn from(b: PolishedBasalt) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBlackstone> for BlockState
impl From<PolishedBlackstone> for BlockState
Source§fn from(b: PolishedBlackstone) -> Self
fn from(b: PolishedBlackstone) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBlackstoneBrickSlab> for BlockState
impl From<PolishedBlackstoneBrickSlab> for BlockState
Source§fn from(b: PolishedBlackstoneBrickSlab) -> Self
fn from(b: PolishedBlackstoneBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBlackstoneBrickStairs> for BlockState
impl From<PolishedBlackstoneBrickStairs> for BlockState
Source§fn from(b: PolishedBlackstoneBrickStairs) -> Self
fn from(b: PolishedBlackstoneBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBlackstoneBrickWall> for BlockState
impl From<PolishedBlackstoneBrickWall> for BlockState
Source§fn from(b: PolishedBlackstoneBrickWall) -> Self
fn from(b: PolishedBlackstoneBrickWall) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBlackstoneBricks> for BlockState
impl From<PolishedBlackstoneBricks> for BlockState
Source§fn from(b: PolishedBlackstoneBricks) -> Self
fn from(b: PolishedBlackstoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBlackstoneButton> for BlockState
impl From<PolishedBlackstoneButton> for BlockState
Source§fn from(b: PolishedBlackstoneButton) -> Self
fn from(b: PolishedBlackstoneButton) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBlackstonePressurePlate> for BlockState
impl From<PolishedBlackstonePressurePlate> for BlockState
Source§fn from(b: PolishedBlackstonePressurePlate) -> Self
fn from(b: PolishedBlackstonePressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBlackstoneSlab> for BlockState
impl From<PolishedBlackstoneSlab> for BlockState
Source§fn from(b: PolishedBlackstoneSlab) -> Self
fn from(b: PolishedBlackstoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBlackstoneStairs> for BlockState
impl From<PolishedBlackstoneStairs> for BlockState
Source§fn from(b: PolishedBlackstoneStairs) -> Self
fn from(b: PolishedBlackstoneStairs) -> Self
Converts to this type from the input type.
Source§impl From<PolishedBlackstoneWall> for BlockState
impl From<PolishedBlackstoneWall> for BlockState
Source§fn from(b: PolishedBlackstoneWall) -> Self
fn from(b: PolishedBlackstoneWall) -> Self
Converts to this type from the input type.
Source§impl From<PolishedDeepslate> for BlockState
impl From<PolishedDeepslate> for BlockState
Source§fn from(b: PolishedDeepslate) -> Self
fn from(b: PolishedDeepslate) -> Self
Converts to this type from the input type.
Source§impl From<PolishedDeepslateSlab> for BlockState
impl From<PolishedDeepslateSlab> for BlockState
Source§fn from(b: PolishedDeepslateSlab) -> Self
fn from(b: PolishedDeepslateSlab) -> Self
Converts to this type from the input type.
Source§impl From<PolishedDeepslateStairs> for BlockState
impl From<PolishedDeepslateStairs> for BlockState
Source§fn from(b: PolishedDeepslateStairs) -> Self
fn from(b: PolishedDeepslateStairs) -> Self
Converts to this type from the input type.
Source§impl From<PolishedDeepslateWall> for BlockState
impl From<PolishedDeepslateWall> for BlockState
Source§fn from(b: PolishedDeepslateWall) -> Self
fn from(b: PolishedDeepslateWall) -> Self
Converts to this type from the input type.
Source§impl From<PolishedDiorite> for BlockState
impl From<PolishedDiorite> for BlockState
Source§fn from(b: PolishedDiorite) -> Self
fn from(b: PolishedDiorite) -> Self
Converts to this type from the input type.
Source§impl From<PolishedDioriteSlab> for BlockState
impl From<PolishedDioriteSlab> for BlockState
Source§fn from(b: PolishedDioriteSlab) -> Self
fn from(b: PolishedDioriteSlab) -> Self
Converts to this type from the input type.
Source§impl From<PolishedDioriteStairs> for BlockState
impl From<PolishedDioriteStairs> for BlockState
Source§fn from(b: PolishedDioriteStairs) -> Self
fn from(b: PolishedDioriteStairs) -> Self
Converts to this type from the input type.
Source§impl From<PolishedGranite> for BlockState
impl From<PolishedGranite> for BlockState
Source§fn from(b: PolishedGranite) -> Self
fn from(b: PolishedGranite) -> Self
Converts to this type from the input type.
Source§impl From<PolishedGraniteSlab> for BlockState
impl From<PolishedGraniteSlab> for BlockState
Source§fn from(b: PolishedGraniteSlab) -> Self
fn from(b: PolishedGraniteSlab) -> Self
Converts to this type from the input type.
Source§impl From<PolishedGraniteStairs> for BlockState
impl From<PolishedGraniteStairs> for BlockState
Source§fn from(b: PolishedGraniteStairs) -> Self
fn from(b: PolishedGraniteStairs) -> Self
Converts to this type from the input type.
Source§impl From<PolishedTuff> for BlockState
impl From<PolishedTuff> for BlockState
Source§fn from(b: PolishedTuff) -> Self
fn from(b: PolishedTuff) -> Self
Converts to this type from the input type.
Source§impl From<PolishedTuffSlab> for BlockState
impl From<PolishedTuffSlab> for BlockState
Source§fn from(b: PolishedTuffSlab) -> Self
fn from(b: PolishedTuffSlab) -> Self
Converts to this type from the input type.
Source§impl From<PolishedTuffStairs> for BlockState
impl From<PolishedTuffStairs> for BlockState
Source§fn from(b: PolishedTuffStairs) -> Self
fn from(b: PolishedTuffStairs) -> Self
Converts to this type from the input type.
Source§impl From<PolishedTuffWall> for BlockState
impl From<PolishedTuffWall> for BlockState
Source§fn from(b: PolishedTuffWall) -> Self
fn from(b: PolishedTuffWall) -> Self
Converts to this type from the input type.
Source§impl From<Poppy> for BlockState
impl From<Poppy> for BlockState
Source§impl From<Potatoes> for BlockState
impl From<Potatoes> for BlockState
Source§impl From<PottedAcaciaSapling> for BlockState
impl From<PottedAcaciaSapling> for BlockState
Source§fn from(b: PottedAcaciaSapling) -> Self
fn from(b: PottedAcaciaSapling) -> Self
Converts to this type from the input type.
Source§impl From<PottedAllium> for BlockState
impl From<PottedAllium> for BlockState
Source§fn from(b: PottedAllium) -> Self
fn from(b: PottedAllium) -> Self
Converts to this type from the input type.
Source§impl From<PottedAzaleaBush> for BlockState
impl From<PottedAzaleaBush> for BlockState
Source§fn from(b: PottedAzaleaBush) -> Self
fn from(b: PottedAzaleaBush) -> Self
Converts to this type from the input type.
Source§impl From<PottedAzureBluet> for BlockState
impl From<PottedAzureBluet> for BlockState
Source§fn from(b: PottedAzureBluet) -> Self
fn from(b: PottedAzureBluet) -> Self
Converts to this type from the input type.
Source§impl From<PottedBamboo> for BlockState
impl From<PottedBamboo> for BlockState
Source§fn from(b: PottedBamboo) -> Self
fn from(b: PottedBamboo) -> Self
Converts to this type from the input type.
Source§impl From<PottedBirchSapling> for BlockState
impl From<PottedBirchSapling> for BlockState
Source§fn from(b: PottedBirchSapling) -> Self
fn from(b: PottedBirchSapling) -> Self
Converts to this type from the input type.
Source§impl From<PottedBlueOrchid> for BlockState
impl From<PottedBlueOrchid> for BlockState
Source§fn from(b: PottedBlueOrchid) -> Self
fn from(b: PottedBlueOrchid) -> Self
Converts to this type from the input type.
Source§impl From<PottedBrownMushroom> for BlockState
impl From<PottedBrownMushroom> for BlockState
Source§fn from(b: PottedBrownMushroom) -> Self
fn from(b: PottedBrownMushroom) -> Self
Converts to this type from the input type.
Source§impl From<PottedCactus> for BlockState
impl From<PottedCactus> for BlockState
Source§fn from(b: PottedCactus) -> Self
fn from(b: PottedCactus) -> Self
Converts to this type from the input type.
Source§impl From<PottedCherrySapling> for BlockState
impl From<PottedCherrySapling> for BlockState
Source§fn from(b: PottedCherrySapling) -> Self
fn from(b: PottedCherrySapling) -> Self
Converts to this type from the input type.
Source§impl From<PottedClosedEyeblossom> for BlockState
impl From<PottedClosedEyeblossom> for BlockState
Source§fn from(b: PottedClosedEyeblossom) -> Self
fn from(b: PottedClosedEyeblossom) -> Self
Converts to this type from the input type.
Source§impl From<PottedCornflower> for BlockState
impl From<PottedCornflower> for BlockState
Source§fn from(b: PottedCornflower) -> Self
fn from(b: PottedCornflower) -> Self
Converts to this type from the input type.
Source§impl From<PottedCrimsonFungus> for BlockState
impl From<PottedCrimsonFungus> for BlockState
Source§fn from(b: PottedCrimsonFungus) -> Self
fn from(b: PottedCrimsonFungus) -> Self
Converts to this type from the input type.
Source§impl From<PottedCrimsonRoots> for BlockState
impl From<PottedCrimsonRoots> for BlockState
Source§fn from(b: PottedCrimsonRoots) -> Self
fn from(b: PottedCrimsonRoots) -> Self
Converts to this type from the input type.
Source§impl From<PottedDandelion> for BlockState
impl From<PottedDandelion> for BlockState
Source§fn from(b: PottedDandelion) -> Self
fn from(b: PottedDandelion) -> Self
Converts to this type from the input type.
Source§impl From<PottedDarkOakSapling> for BlockState
impl From<PottedDarkOakSapling> for BlockState
Source§fn from(b: PottedDarkOakSapling) -> Self
fn from(b: PottedDarkOakSapling) -> Self
Converts to this type from the input type.
Source§impl From<PottedDeadBush> for BlockState
impl From<PottedDeadBush> for BlockState
Source§fn from(b: PottedDeadBush) -> Self
fn from(b: PottedDeadBush) -> Self
Converts to this type from the input type.
Source§impl From<PottedFern> for BlockState
impl From<PottedFern> for BlockState
Source§fn from(b: PottedFern) -> Self
fn from(b: PottedFern) -> Self
Converts to this type from the input type.
Source§impl From<PottedFloweringAzaleaBush> for BlockState
impl From<PottedFloweringAzaleaBush> for BlockState
Source§fn from(b: PottedFloweringAzaleaBush) -> Self
fn from(b: PottedFloweringAzaleaBush) -> Self
Converts to this type from the input type.
Source§impl From<PottedJungleSapling> for BlockState
impl From<PottedJungleSapling> for BlockState
Source§fn from(b: PottedJungleSapling) -> Self
fn from(b: PottedJungleSapling) -> Self
Converts to this type from the input type.
Source§impl From<PottedLilyOfTheValley> for BlockState
impl From<PottedLilyOfTheValley> for BlockState
Source§fn from(b: PottedLilyOfTheValley) -> Self
fn from(b: PottedLilyOfTheValley) -> Self
Converts to this type from the input type.
Source§impl From<PottedMangrovePropagule> for BlockState
impl From<PottedMangrovePropagule> for BlockState
Source§fn from(b: PottedMangrovePropagule) -> Self
fn from(b: PottedMangrovePropagule) -> Self
Converts to this type from the input type.
Source§impl From<PottedOakSapling> for BlockState
impl From<PottedOakSapling> for BlockState
Source§fn from(b: PottedOakSapling) -> Self
fn from(b: PottedOakSapling) -> Self
Converts to this type from the input type.
Source§impl From<PottedOpenEyeblossom> for BlockState
impl From<PottedOpenEyeblossom> for BlockState
Source§fn from(b: PottedOpenEyeblossom) -> Self
fn from(b: PottedOpenEyeblossom) -> Self
Converts to this type from the input type.
Source§impl From<PottedOrangeTulip> for BlockState
impl From<PottedOrangeTulip> for BlockState
Source§fn from(b: PottedOrangeTulip) -> Self
fn from(b: PottedOrangeTulip) -> Self
Converts to this type from the input type.
Source§impl From<PottedOxeyeDaisy> for BlockState
impl From<PottedOxeyeDaisy> for BlockState
Source§fn from(b: PottedOxeyeDaisy) -> Self
fn from(b: PottedOxeyeDaisy) -> Self
Converts to this type from the input type.
Source§impl From<PottedPaleOakSapling> for BlockState
impl From<PottedPaleOakSapling> for BlockState
Source§fn from(b: PottedPaleOakSapling) -> Self
fn from(b: PottedPaleOakSapling) -> Self
Converts to this type from the input type.
Source§impl From<PottedPinkTulip> for BlockState
impl From<PottedPinkTulip> for BlockState
Source§fn from(b: PottedPinkTulip) -> Self
fn from(b: PottedPinkTulip) -> Self
Converts to this type from the input type.
Source§impl From<PottedPoppy> for BlockState
impl From<PottedPoppy> for BlockState
Source§fn from(b: PottedPoppy) -> Self
fn from(b: PottedPoppy) -> Self
Converts to this type from the input type.
Source§impl From<PottedRedMushroom> for BlockState
impl From<PottedRedMushroom> for BlockState
Source§fn from(b: PottedRedMushroom) -> Self
fn from(b: PottedRedMushroom) -> Self
Converts to this type from the input type.
Source§impl From<PottedRedTulip> for BlockState
impl From<PottedRedTulip> for BlockState
Source§fn from(b: PottedRedTulip) -> Self
fn from(b: PottedRedTulip) -> Self
Converts to this type from the input type.
Source§impl From<PottedSpruceSapling> for BlockState
impl From<PottedSpruceSapling> for BlockState
Source§fn from(b: PottedSpruceSapling) -> Self
fn from(b: PottedSpruceSapling) -> Self
Converts to this type from the input type.
Source§impl From<PottedTorchflower> for BlockState
impl From<PottedTorchflower> for BlockState
Source§fn from(b: PottedTorchflower) -> Self
fn from(b: PottedTorchflower) -> Self
Converts to this type from the input type.
Source§impl From<PottedWarpedFungus> for BlockState
impl From<PottedWarpedFungus> for BlockState
Source§fn from(b: PottedWarpedFungus) -> Self
fn from(b: PottedWarpedFungus) -> Self
Converts to this type from the input type.
Source§impl From<PottedWarpedRoots> for BlockState
impl From<PottedWarpedRoots> for BlockState
Source§fn from(b: PottedWarpedRoots) -> Self
fn from(b: PottedWarpedRoots) -> Self
Converts to this type from the input type.
Source§impl From<PottedWhiteTulip> for BlockState
impl From<PottedWhiteTulip> for BlockState
Source§fn from(b: PottedWhiteTulip) -> Self
fn from(b: PottedWhiteTulip) -> Self
Converts to this type from the input type.
Source§impl From<PottedWitherRose> for BlockState
impl From<PottedWitherRose> for BlockState
Source§fn from(b: PottedWitherRose) -> Self
fn from(b: PottedWitherRose) -> Self
Converts to this type from the input type.
Source§impl From<PowderSnow> for BlockState
impl From<PowderSnow> for BlockState
Source§fn from(b: PowderSnow) -> Self
fn from(b: PowderSnow) -> Self
Converts to this type from the input type.
Source§impl From<PowderSnowCauldron> for BlockState
impl From<PowderSnowCauldron> for BlockState
Source§fn from(b: PowderSnowCauldron) -> Self
fn from(b: PowderSnowCauldron) -> Self
Converts to this type from the input type.
Source§impl From<PoweredRail> for BlockState
impl From<PoweredRail> for BlockState
Source§fn from(b: PoweredRail) -> Self
fn from(b: PoweredRail) -> Self
Converts to this type from the input type.
Source§impl From<Prismarine> for BlockState
impl From<Prismarine> for BlockState
Source§fn from(b: Prismarine) -> Self
fn from(b: Prismarine) -> Self
Converts to this type from the input type.
Source§impl From<PrismarineBrickSlab> for BlockState
impl From<PrismarineBrickSlab> for BlockState
Source§fn from(b: PrismarineBrickSlab) -> Self
fn from(b: PrismarineBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<PrismarineBrickStairs> for BlockState
impl From<PrismarineBrickStairs> for BlockState
Source§fn from(b: PrismarineBrickStairs) -> Self
fn from(b: PrismarineBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<PrismarineBricks> for BlockState
impl From<PrismarineBricks> for BlockState
Source§fn from(b: PrismarineBricks) -> Self
fn from(b: PrismarineBricks) -> Self
Converts to this type from the input type.
Source§impl From<PrismarineSlab> for BlockState
impl From<PrismarineSlab> for BlockState
Source§fn from(b: PrismarineSlab) -> Self
fn from(b: PrismarineSlab) -> Self
Converts to this type from the input type.
Source§impl From<PrismarineStairs> for BlockState
impl From<PrismarineStairs> for BlockState
Source§fn from(b: PrismarineStairs) -> Self
fn from(b: PrismarineStairs) -> Self
Converts to this type from the input type.
Source§impl From<PrismarineWall> for BlockState
impl From<PrismarineWall> for BlockState
Source§fn from(b: PrismarineWall) -> Self
fn from(b: PrismarineWall) -> Self
Converts to this type from the input type.
Source§impl From<Pumpkin> for BlockState
impl From<Pumpkin> for BlockState
Source§impl From<PumpkinStem> for BlockState
impl From<PumpkinStem> for BlockState
Source§fn from(b: PumpkinStem) -> Self
fn from(b: PumpkinStem) -> Self
Converts to this type from the input type.
Source§impl From<PurpleBanner> for BlockState
impl From<PurpleBanner> for BlockState
Source§fn from(b: PurpleBanner) -> Self
fn from(b: PurpleBanner) -> Self
Converts to this type from the input type.
Source§impl From<PurpleBed> for BlockState
impl From<PurpleBed> for BlockState
Source§impl From<PurpleCandle> for BlockState
impl From<PurpleCandle> for BlockState
Source§fn from(b: PurpleCandle) -> Self
fn from(b: PurpleCandle) -> Self
Converts to this type from the input type.
Source§impl From<PurpleCandleCake> for BlockState
impl From<PurpleCandleCake> for BlockState
Source§fn from(b: PurpleCandleCake) -> Self
fn from(b: PurpleCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<PurpleCarpet> for BlockState
impl From<PurpleCarpet> for BlockState
Source§fn from(b: PurpleCarpet) -> Self
fn from(b: PurpleCarpet) -> Self
Converts to this type from the input type.
Source§impl From<PurpleConcrete> for BlockState
impl From<PurpleConcrete> for BlockState
Source§fn from(b: PurpleConcrete) -> Self
fn from(b: PurpleConcrete) -> Self
Converts to this type from the input type.
Source§impl From<PurpleConcretePowder> for BlockState
impl From<PurpleConcretePowder> for BlockState
Source§fn from(b: PurpleConcretePowder) -> Self
fn from(b: PurpleConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<PurpleGlazedTerracotta> for BlockState
impl From<PurpleGlazedTerracotta> for BlockState
Source§fn from(b: PurpleGlazedTerracotta) -> Self
fn from(b: PurpleGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<PurpleShulkerBox> for BlockState
impl From<PurpleShulkerBox> for BlockState
Source§fn from(b: PurpleShulkerBox) -> Self
fn from(b: PurpleShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<PurpleStainedGlass> for BlockState
impl From<PurpleStainedGlass> for BlockState
Source§fn from(b: PurpleStainedGlass) -> Self
fn from(b: PurpleStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<PurpleStainedGlassPane> for BlockState
impl From<PurpleStainedGlassPane> for BlockState
Source§fn from(b: PurpleStainedGlassPane) -> Self
fn from(b: PurpleStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<PurpleTerracotta> for BlockState
impl From<PurpleTerracotta> for BlockState
Source§fn from(b: PurpleTerracotta) -> Self
fn from(b: PurpleTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<PurpleWallBanner> for BlockState
impl From<PurpleWallBanner> for BlockState
Source§fn from(b: PurpleWallBanner) -> Self
fn from(b: PurpleWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<PurpleWool> for BlockState
impl From<PurpleWool> for BlockState
Source§fn from(b: PurpleWool) -> Self
fn from(b: PurpleWool) -> Self
Converts to this type from the input type.
Source§impl From<PurpurBlock> for BlockState
impl From<PurpurBlock> for BlockState
Source§fn from(b: PurpurBlock) -> Self
fn from(b: PurpurBlock) -> Self
Converts to this type from the input type.
Source§impl From<PurpurPillar> for BlockState
impl From<PurpurPillar> for BlockState
Source§fn from(b: PurpurPillar) -> Self
fn from(b: PurpurPillar) -> Self
Converts to this type from the input type.
Source§impl From<PurpurSlab> for BlockState
impl From<PurpurSlab> for BlockState
Source§fn from(b: PurpurSlab) -> Self
fn from(b: PurpurSlab) -> Self
Converts to this type from the input type.
Source§impl From<PurpurStairs> for BlockState
impl From<PurpurStairs> for BlockState
Source§fn from(b: PurpurStairs) -> Self
fn from(b: PurpurStairs) -> Self
Converts to this type from the input type.
Source§impl From<QuartzBlock> for BlockState
impl From<QuartzBlock> for BlockState
Source§fn from(b: QuartzBlock) -> Self
fn from(b: QuartzBlock) -> Self
Converts to this type from the input type.
Source§impl From<QuartzBricks> for BlockState
impl From<QuartzBricks> for BlockState
Source§fn from(b: QuartzBricks) -> Self
fn from(b: QuartzBricks) -> Self
Converts to this type from the input type.
Source§impl From<QuartzPillar> for BlockState
impl From<QuartzPillar> for BlockState
Source§fn from(b: QuartzPillar) -> Self
fn from(b: QuartzPillar) -> Self
Converts to this type from the input type.
Source§impl From<QuartzSlab> for BlockState
impl From<QuartzSlab> for BlockState
Source§fn from(b: QuartzSlab) -> Self
fn from(b: QuartzSlab) -> Self
Converts to this type from the input type.
Source§impl From<QuartzStairs> for BlockState
impl From<QuartzStairs> for BlockState
Source§fn from(b: QuartzStairs) -> Self
fn from(b: QuartzStairs) -> Self
Converts to this type from the input type.
Source§impl From<Rail> for BlockState
impl From<Rail> for BlockState
Source§impl From<RawCopperBlock> for BlockState
impl From<RawCopperBlock> for BlockState
Source§fn from(b: RawCopperBlock) -> Self
fn from(b: RawCopperBlock) -> Self
Converts to this type from the input type.
Source§impl From<RawGoldBlock> for BlockState
impl From<RawGoldBlock> for BlockState
Source§fn from(b: RawGoldBlock) -> Self
fn from(b: RawGoldBlock) -> Self
Converts to this type from the input type.
Source§impl From<RawIronBlock> for BlockState
impl From<RawIronBlock> for BlockState
Source§fn from(b: RawIronBlock) -> Self
fn from(b: RawIronBlock) -> Self
Converts to this type from the input type.
Source§impl From<RedBanner> for BlockState
impl From<RedBanner> for BlockState
Source§impl From<RedBed> for BlockState
impl From<RedBed> for BlockState
Source§impl From<RedCandle> for BlockState
impl From<RedCandle> for BlockState
Source§impl From<RedCandleCake> for BlockState
impl From<RedCandleCake> for BlockState
Source§fn from(b: RedCandleCake) -> Self
fn from(b: RedCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<RedCarpet> for BlockState
impl From<RedCarpet> for BlockState
Source§impl From<RedConcrete> for BlockState
impl From<RedConcrete> for BlockState
Source§fn from(b: RedConcrete) -> Self
fn from(b: RedConcrete) -> Self
Converts to this type from the input type.
Source§impl From<RedConcretePowder> for BlockState
impl From<RedConcretePowder> for BlockState
Source§fn from(b: RedConcretePowder) -> Self
fn from(b: RedConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<RedGlazedTerracotta> for BlockState
impl From<RedGlazedTerracotta> for BlockState
Source§fn from(b: RedGlazedTerracotta) -> Self
fn from(b: RedGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<RedMushroom> for BlockState
impl From<RedMushroom> for BlockState
Source§fn from(b: RedMushroom) -> Self
fn from(b: RedMushroom) -> Self
Converts to this type from the input type.
Source§impl From<RedMushroomBlock> for BlockState
impl From<RedMushroomBlock> for BlockState
Source§fn from(b: RedMushroomBlock) -> Self
fn from(b: RedMushroomBlock) -> Self
Converts to this type from the input type.
Source§impl From<RedNetherBrickSlab> for BlockState
impl From<RedNetherBrickSlab> for BlockState
Source§fn from(b: RedNetherBrickSlab) -> Self
fn from(b: RedNetherBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<RedNetherBrickStairs> for BlockState
impl From<RedNetherBrickStairs> for BlockState
Source§fn from(b: RedNetherBrickStairs) -> Self
fn from(b: RedNetherBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<RedNetherBrickWall> for BlockState
impl From<RedNetherBrickWall> for BlockState
Source§fn from(b: RedNetherBrickWall) -> Self
fn from(b: RedNetherBrickWall) -> Self
Converts to this type from the input type.
Source§impl From<RedNetherBricks> for BlockState
impl From<RedNetherBricks> for BlockState
Source§fn from(b: RedNetherBricks) -> Self
fn from(b: RedNetherBricks) -> Self
Converts to this type from the input type.
Source§impl From<RedSand> for BlockState
impl From<RedSand> for BlockState
Source§impl From<RedSandstone> for BlockState
impl From<RedSandstone> for BlockState
Source§fn from(b: RedSandstone) -> Self
fn from(b: RedSandstone) -> Self
Converts to this type from the input type.
Source§impl From<RedSandstoneSlab> for BlockState
impl From<RedSandstoneSlab> for BlockState
Source§fn from(b: RedSandstoneSlab) -> Self
fn from(b: RedSandstoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<RedSandstoneStairs> for BlockState
impl From<RedSandstoneStairs> for BlockState
Source§fn from(b: RedSandstoneStairs) -> Self
fn from(b: RedSandstoneStairs) -> Self
Converts to this type from the input type.
Source§impl From<RedSandstoneWall> for BlockState
impl From<RedSandstoneWall> for BlockState
Source§fn from(b: RedSandstoneWall) -> Self
fn from(b: RedSandstoneWall) -> Self
Converts to this type from the input type.
Source§impl From<RedShulkerBox> for BlockState
impl From<RedShulkerBox> for BlockState
Source§fn from(b: RedShulkerBox) -> Self
fn from(b: RedShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<RedStainedGlass> for BlockState
impl From<RedStainedGlass> for BlockState
Source§fn from(b: RedStainedGlass) -> Self
fn from(b: RedStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<RedStainedGlassPane> for BlockState
impl From<RedStainedGlassPane> for BlockState
Source§fn from(b: RedStainedGlassPane) -> Self
fn from(b: RedStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<RedTerracotta> for BlockState
impl From<RedTerracotta> for BlockState
Source§fn from(b: RedTerracotta) -> Self
fn from(b: RedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<RedTulip> for BlockState
impl From<RedTulip> for BlockState
Source§impl From<RedWallBanner> for BlockState
impl From<RedWallBanner> for BlockState
Source§fn from(b: RedWallBanner) -> Self
fn from(b: RedWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<RedWool> for BlockState
impl From<RedWool> for BlockState
Source§impl From<RedstoneBlock> for BlockState
impl From<RedstoneBlock> for BlockState
Source§fn from(b: RedstoneBlock) -> Self
fn from(b: RedstoneBlock) -> Self
Converts to this type from the input type.
Source§impl From<RedstoneLamp> for BlockState
impl From<RedstoneLamp> for BlockState
Source§fn from(b: RedstoneLamp) -> Self
fn from(b: RedstoneLamp) -> Self
Converts to this type from the input type.
Source§impl From<RedstoneOre> for BlockState
impl From<RedstoneOre> for BlockState
Source§fn from(b: RedstoneOre) -> Self
fn from(b: RedstoneOre) -> Self
Converts to this type from the input type.
Source§impl From<RedstoneTorch> for BlockState
impl From<RedstoneTorch> for BlockState
Source§fn from(b: RedstoneTorch) -> Self
fn from(b: RedstoneTorch) -> Self
Converts to this type from the input type.
Source§impl From<RedstoneWallTorch> for BlockState
impl From<RedstoneWallTorch> for BlockState
Source§fn from(b: RedstoneWallTorch) -> Self
fn from(b: RedstoneWallTorch) -> Self
Converts to this type from the input type.
Source§impl From<RedstoneWire> for BlockState
impl From<RedstoneWire> for BlockState
Source§fn from(b: RedstoneWire) -> Self
fn from(b: RedstoneWire) -> Self
Converts to this type from the input type.
Source§impl From<ReinforcedDeepslate> for BlockState
impl From<ReinforcedDeepslate> for BlockState
Source§fn from(b: ReinforcedDeepslate) -> Self
fn from(b: ReinforcedDeepslate) -> Self
Converts to this type from the input type.
Source§impl From<Repeater> for BlockState
impl From<Repeater> for BlockState
Source§impl From<RepeatingCommandBlock> for BlockState
impl From<RepeatingCommandBlock> for BlockState
Source§fn from(b: RepeatingCommandBlock) -> Self
fn from(b: RepeatingCommandBlock) -> Self
Converts to this type from the input type.
Source§impl From<ResinBlock> for BlockState
impl From<ResinBlock> for BlockState
Source§fn from(b: ResinBlock) -> Self
fn from(b: ResinBlock) -> Self
Converts to this type from the input type.
Source§impl From<ResinBrickSlab> for BlockState
impl From<ResinBrickSlab> for BlockState
Source§fn from(b: ResinBrickSlab) -> Self
fn from(b: ResinBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<ResinBrickStairs> for BlockState
impl From<ResinBrickStairs> for BlockState
Source§fn from(b: ResinBrickStairs) -> Self
fn from(b: ResinBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<ResinBrickWall> for BlockState
impl From<ResinBrickWall> for BlockState
Source§fn from(b: ResinBrickWall) -> Self
fn from(b: ResinBrickWall) -> Self
Converts to this type from the input type.
Source§impl From<ResinBricks> for BlockState
impl From<ResinBricks> for BlockState
Source§fn from(b: ResinBricks) -> Self
fn from(b: ResinBricks) -> Self
Converts to this type from the input type.
Source§impl From<ResinClump> for BlockState
impl From<ResinClump> for BlockState
Source§fn from(b: ResinClump) -> Self
fn from(b: ResinClump) -> Self
Converts to this type from the input type.
Source§impl From<RespawnAnchor> for BlockState
impl From<RespawnAnchor> for BlockState
Source§fn from(b: RespawnAnchor) -> Self
fn from(b: RespawnAnchor) -> Self
Converts to this type from the input type.
Source§impl From<RootedDirt> for BlockState
impl From<RootedDirt> for BlockState
Source§fn from(b: RootedDirt) -> Self
fn from(b: RootedDirt) -> Self
Converts to this type from the input type.
Source§impl From<RoseBush> for BlockState
impl From<RoseBush> for BlockState
Source§impl From<Sand> for BlockState
impl From<Sand> for BlockState
Source§impl From<Sandstone> for BlockState
impl From<Sandstone> for BlockState
Source§impl From<SandstoneSlab> for BlockState
impl From<SandstoneSlab> for BlockState
Source§fn from(b: SandstoneSlab) -> Self
fn from(b: SandstoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<SandstoneStairs> for BlockState
impl From<SandstoneStairs> for BlockState
Source§fn from(b: SandstoneStairs) -> Self
fn from(b: SandstoneStairs) -> Self
Converts to this type from the input type.
Source§impl From<SandstoneWall> for BlockState
impl From<SandstoneWall> for BlockState
Source§fn from(b: SandstoneWall) -> Self
fn from(b: SandstoneWall) -> Self
Converts to this type from the input type.
Source§impl From<Scaffolding> for BlockState
impl From<Scaffolding> for BlockState
Source§fn from(b: Scaffolding) -> Self
fn from(b: Scaffolding) -> Self
Converts to this type from the input type.
Source§impl From<Sculk> for BlockState
impl From<Sculk> for BlockState
Source§impl From<SculkCatalyst> for BlockState
impl From<SculkCatalyst> for BlockState
Source§fn from(b: SculkCatalyst) -> Self
fn from(b: SculkCatalyst) -> Self
Converts to this type from the input type.
Source§impl From<SculkSensor> for BlockState
impl From<SculkSensor> for BlockState
Source§fn from(b: SculkSensor) -> Self
fn from(b: SculkSensor) -> Self
Converts to this type from the input type.
Source§impl From<SculkShrieker> for BlockState
impl From<SculkShrieker> for BlockState
Source§fn from(b: SculkShrieker) -> Self
fn from(b: SculkShrieker) -> Self
Converts to this type from the input type.
Source§impl From<SculkVein> for BlockState
impl From<SculkVein> for BlockState
Source§impl From<SeaLantern> for BlockState
impl From<SeaLantern> for BlockState
Source§fn from(b: SeaLantern) -> Self
fn from(b: SeaLantern) -> Self
Converts to this type from the input type.
Source§impl From<SeaPickle> for BlockState
impl From<SeaPickle> for BlockState
Source§impl From<Seagrass> for BlockState
impl From<Seagrass> for BlockState
Source§impl From<ShortGrass> for BlockState
impl From<ShortGrass> for BlockState
Source§fn from(b: ShortGrass) -> Self
fn from(b: ShortGrass) -> Self
Converts to this type from the input type.
Source§impl From<Shroomlight> for BlockState
impl From<Shroomlight> for BlockState
Source§fn from(b: Shroomlight) -> Self
fn from(b: Shroomlight) -> Self
Converts to this type from the input type.
Source§impl From<ShulkerBox> for BlockState
impl From<ShulkerBox> for BlockState
Source§fn from(b: ShulkerBox) -> Self
fn from(b: ShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<SkeletonSkull> for BlockState
impl From<SkeletonSkull> for BlockState
Source§fn from(b: SkeletonSkull) -> Self
fn from(b: SkeletonSkull) -> Self
Converts to this type from the input type.
Source§impl From<SkeletonWallSkull> for BlockState
impl From<SkeletonWallSkull> for BlockState
Source§fn from(b: SkeletonWallSkull) -> Self
fn from(b: SkeletonWallSkull) -> Self
Converts to this type from the input type.
Source§impl From<SlimeBlock> for BlockState
impl From<SlimeBlock> for BlockState
Source§fn from(b: SlimeBlock) -> Self
fn from(b: SlimeBlock) -> Self
Converts to this type from the input type.
Source§impl From<SmallAmethystBud> for BlockState
impl From<SmallAmethystBud> for BlockState
Source§fn from(b: SmallAmethystBud) -> Self
fn from(b: SmallAmethystBud) -> Self
Converts to this type from the input type.
Source§impl From<SmallDripleaf> for BlockState
impl From<SmallDripleaf> for BlockState
Source§fn from(b: SmallDripleaf) -> Self
fn from(b: SmallDripleaf) -> Self
Converts to this type from the input type.
Source§impl From<SmithingTable> for BlockState
impl From<SmithingTable> for BlockState
Source§fn from(b: SmithingTable) -> Self
fn from(b: SmithingTable) -> Self
Converts to this type from the input type.
Source§impl From<Smoker> for BlockState
impl From<Smoker> for BlockState
Source§impl From<SmoothBasalt> for BlockState
impl From<SmoothBasalt> for BlockState
Source§fn from(b: SmoothBasalt) -> Self
fn from(b: SmoothBasalt) -> Self
Converts to this type from the input type.
Source§impl From<SmoothQuartz> for BlockState
impl From<SmoothQuartz> for BlockState
Source§fn from(b: SmoothQuartz) -> Self
fn from(b: SmoothQuartz) -> Self
Converts to this type from the input type.
Source§impl From<SmoothQuartzSlab> for BlockState
impl From<SmoothQuartzSlab> for BlockState
Source§fn from(b: SmoothQuartzSlab) -> Self
fn from(b: SmoothQuartzSlab) -> Self
Converts to this type from the input type.
Source§impl From<SmoothQuartzStairs> for BlockState
impl From<SmoothQuartzStairs> for BlockState
Source§fn from(b: SmoothQuartzStairs) -> Self
fn from(b: SmoothQuartzStairs) -> Self
Converts to this type from the input type.
Source§impl From<SmoothRedSandstone> for BlockState
impl From<SmoothRedSandstone> for BlockState
Source§fn from(b: SmoothRedSandstone) -> Self
fn from(b: SmoothRedSandstone) -> Self
Converts to this type from the input type.
Source§impl From<SmoothRedSandstoneSlab> for BlockState
impl From<SmoothRedSandstoneSlab> for BlockState
Source§fn from(b: SmoothRedSandstoneSlab) -> Self
fn from(b: SmoothRedSandstoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<SmoothRedSandstoneStairs> for BlockState
impl From<SmoothRedSandstoneStairs> for BlockState
Source§fn from(b: SmoothRedSandstoneStairs) -> Self
fn from(b: SmoothRedSandstoneStairs) -> Self
Converts to this type from the input type.
Source§impl From<SmoothSandstone> for BlockState
impl From<SmoothSandstone> for BlockState
Source§fn from(b: SmoothSandstone) -> Self
fn from(b: SmoothSandstone) -> Self
Converts to this type from the input type.
Source§impl From<SmoothSandstoneSlab> for BlockState
impl From<SmoothSandstoneSlab> for BlockState
Source§fn from(b: SmoothSandstoneSlab) -> Self
fn from(b: SmoothSandstoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<SmoothSandstoneStairs> for BlockState
impl From<SmoothSandstoneStairs> for BlockState
Source§fn from(b: SmoothSandstoneStairs) -> Self
fn from(b: SmoothSandstoneStairs) -> Self
Converts to this type from the input type.
Source§impl From<SmoothStone> for BlockState
impl From<SmoothStone> for BlockState
Source§fn from(b: SmoothStone) -> Self
fn from(b: SmoothStone) -> Self
Converts to this type from the input type.
Source§impl From<SmoothStoneSlab> for BlockState
impl From<SmoothStoneSlab> for BlockState
Source§fn from(b: SmoothStoneSlab) -> Self
fn from(b: SmoothStoneSlab) -> Self
Converts to this type from the input type.
Source§impl From<SnifferEgg> for BlockState
impl From<SnifferEgg> for BlockState
Source§fn from(b: SnifferEgg) -> Self
fn from(b: SnifferEgg) -> Self
Converts to this type from the input type.
Source§impl From<Snow> for BlockState
impl From<Snow> for BlockState
Source§impl From<SnowBlock> for BlockState
impl From<SnowBlock> for BlockState
Source§impl From<SoulCampfire> for BlockState
impl From<SoulCampfire> for BlockState
Source§fn from(b: SoulCampfire) -> Self
fn from(b: SoulCampfire) -> Self
Converts to this type from the input type.
Source§impl From<SoulFire> for BlockState
impl From<SoulFire> for BlockState
Source§impl From<SoulLantern> for BlockState
impl From<SoulLantern> for BlockState
Source§fn from(b: SoulLantern) -> Self
fn from(b: SoulLantern) -> Self
Converts to this type from the input type.
Source§impl From<SoulSand> for BlockState
impl From<SoulSand> for BlockState
Source§impl From<SoulSoil> for BlockState
impl From<SoulSoil> for BlockState
Source§impl From<SoulTorch> for BlockState
impl From<SoulTorch> for BlockState
Source§impl From<SoulWallTorch> for BlockState
impl From<SoulWallTorch> for BlockState
Source§fn from(b: SoulWallTorch) -> Self
fn from(b: SoulWallTorch) -> Self
Converts to this type from the input type.
Source§impl From<Spawner> for BlockState
impl From<Spawner> for BlockState
Source§impl From<Sponge> for BlockState
impl From<Sponge> for BlockState
Source§impl From<SporeBlossom> for BlockState
impl From<SporeBlossom> for BlockState
Source§fn from(b: SporeBlossom) -> Self
fn from(b: SporeBlossom) -> Self
Converts to this type from the input type.
Source§impl From<SpruceButton> for BlockState
impl From<SpruceButton> for BlockState
Source§fn from(b: SpruceButton) -> Self
fn from(b: SpruceButton) -> Self
Converts to this type from the input type.
Source§impl From<SpruceDoor> for BlockState
impl From<SpruceDoor> for BlockState
Source§fn from(b: SpruceDoor) -> Self
fn from(b: SpruceDoor) -> Self
Converts to this type from the input type.
Source§impl From<SpruceFence> for BlockState
impl From<SpruceFence> for BlockState
Source§fn from(b: SpruceFence) -> Self
fn from(b: SpruceFence) -> Self
Converts to this type from the input type.
Source§impl From<SpruceFenceGate> for BlockState
impl From<SpruceFenceGate> for BlockState
Source§fn from(b: SpruceFenceGate) -> Self
fn from(b: SpruceFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<SpruceHangingSign> for BlockState
impl From<SpruceHangingSign> for BlockState
Source§fn from(b: SpruceHangingSign) -> Self
fn from(b: SpruceHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<SpruceLeaves> for BlockState
impl From<SpruceLeaves> for BlockState
Source§fn from(b: SpruceLeaves) -> Self
fn from(b: SpruceLeaves) -> Self
Converts to this type from the input type.
Source§impl From<SpruceLog> for BlockState
impl From<SpruceLog> for BlockState
Source§impl From<SprucePlanks> for BlockState
impl From<SprucePlanks> for BlockState
Source§fn from(b: SprucePlanks) -> Self
fn from(b: SprucePlanks) -> Self
Converts to this type from the input type.
Source§impl From<SprucePressurePlate> for BlockState
impl From<SprucePressurePlate> for BlockState
Source§fn from(b: SprucePressurePlate) -> Self
fn from(b: SprucePressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<SpruceSapling> for BlockState
impl From<SpruceSapling> for BlockState
Source§fn from(b: SpruceSapling) -> Self
fn from(b: SpruceSapling) -> Self
Converts to this type from the input type.
Source§impl From<SpruceSign> for BlockState
impl From<SpruceSign> for BlockState
Source§fn from(b: SpruceSign) -> Self
fn from(b: SpruceSign) -> Self
Converts to this type from the input type.
Source§impl From<SpruceSlab> for BlockState
impl From<SpruceSlab> for BlockState
Source§fn from(b: SpruceSlab) -> Self
fn from(b: SpruceSlab) -> Self
Converts to this type from the input type.
Source§impl From<SpruceStairs> for BlockState
impl From<SpruceStairs> for BlockState
Source§fn from(b: SpruceStairs) -> Self
fn from(b: SpruceStairs) -> Self
Converts to this type from the input type.
Source§impl From<SpruceTrapdoor> for BlockState
impl From<SpruceTrapdoor> for BlockState
Source§fn from(b: SpruceTrapdoor) -> Self
fn from(b: SpruceTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<SpruceWallHangingSign> for BlockState
impl From<SpruceWallHangingSign> for BlockState
Source§fn from(b: SpruceWallHangingSign) -> Self
fn from(b: SpruceWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<SpruceWallSign> for BlockState
impl From<SpruceWallSign> for BlockState
Source§fn from(b: SpruceWallSign) -> Self
fn from(b: SpruceWallSign) -> Self
Converts to this type from the input type.
Source§impl From<SpruceWood> for BlockState
impl From<SpruceWood> for BlockState
Source§fn from(b: SpruceWood) -> Self
fn from(b: SpruceWood) -> Self
Converts to this type from the input type.
Source§impl From<StickyPiston> for BlockState
impl From<StickyPiston> for BlockState
Source§fn from(b: StickyPiston) -> Self
fn from(b: StickyPiston) -> Self
Converts to this type from the input type.
Source§impl From<Stone> for BlockState
impl From<Stone> for BlockState
Source§impl From<StoneBrickSlab> for BlockState
impl From<StoneBrickSlab> for BlockState
Source§fn from(b: StoneBrickSlab) -> Self
fn from(b: StoneBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<StoneBrickStairs> for BlockState
impl From<StoneBrickStairs> for BlockState
Source§fn from(b: StoneBrickStairs) -> Self
fn from(b: StoneBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<StoneBrickWall> for BlockState
impl From<StoneBrickWall> for BlockState
Source§fn from(b: StoneBrickWall) -> Self
fn from(b: StoneBrickWall) -> Self
Converts to this type from the input type.
Source§impl From<StoneBricks> for BlockState
impl From<StoneBricks> for BlockState
Source§fn from(b: StoneBricks) -> Self
fn from(b: StoneBricks) -> Self
Converts to this type from the input type.
Source§impl From<StoneButton> for BlockState
impl From<StoneButton> for BlockState
Source§fn from(b: StoneButton) -> Self
fn from(b: StoneButton) -> Self
Converts to this type from the input type.
Source§impl From<StonePressurePlate> for BlockState
impl From<StonePressurePlate> for BlockState
Source§fn from(b: StonePressurePlate) -> Self
fn from(b: StonePressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<StoneSlab> for BlockState
impl From<StoneSlab> for BlockState
Source§impl From<StoneStairs> for BlockState
impl From<StoneStairs> for BlockState
Source§fn from(b: StoneStairs) -> Self
fn from(b: StoneStairs) -> Self
Converts to this type from the input type.
Source§impl From<Stonecutter> for BlockState
impl From<Stonecutter> for BlockState
Source§fn from(b: Stonecutter) -> Self
fn from(b: Stonecutter) -> Self
Converts to this type from the input type.
Source§impl From<StrippedAcaciaLog> for BlockState
impl From<StrippedAcaciaLog> for BlockState
Source§fn from(b: StrippedAcaciaLog) -> Self
fn from(b: StrippedAcaciaLog) -> Self
Converts to this type from the input type.
Source§impl From<StrippedAcaciaWood> for BlockState
impl From<StrippedAcaciaWood> for BlockState
Source§fn from(b: StrippedAcaciaWood) -> Self
fn from(b: StrippedAcaciaWood) -> Self
Converts to this type from the input type.
Source§impl From<StrippedBambooBlock> for BlockState
impl From<StrippedBambooBlock> for BlockState
Source§fn from(b: StrippedBambooBlock) -> Self
fn from(b: StrippedBambooBlock) -> Self
Converts to this type from the input type.
Source§impl From<StrippedBirchLog> for BlockState
impl From<StrippedBirchLog> for BlockState
Source§fn from(b: StrippedBirchLog) -> Self
fn from(b: StrippedBirchLog) -> Self
Converts to this type from the input type.
Source§impl From<StrippedBirchWood> for BlockState
impl From<StrippedBirchWood> for BlockState
Source§fn from(b: StrippedBirchWood) -> Self
fn from(b: StrippedBirchWood) -> Self
Converts to this type from the input type.
Source§impl From<StrippedCherryLog> for BlockState
impl From<StrippedCherryLog> for BlockState
Source§fn from(b: StrippedCherryLog) -> Self
fn from(b: StrippedCherryLog) -> Self
Converts to this type from the input type.
Source§impl From<StrippedCherryWood> for BlockState
impl From<StrippedCherryWood> for BlockState
Source§fn from(b: StrippedCherryWood) -> Self
fn from(b: StrippedCherryWood) -> Self
Converts to this type from the input type.
Source§impl From<StrippedCrimsonHyphae> for BlockState
impl From<StrippedCrimsonHyphae> for BlockState
Source§fn from(b: StrippedCrimsonHyphae) -> Self
fn from(b: StrippedCrimsonHyphae) -> Self
Converts to this type from the input type.
Source§impl From<StrippedCrimsonStem> for BlockState
impl From<StrippedCrimsonStem> for BlockState
Source§fn from(b: StrippedCrimsonStem) -> Self
fn from(b: StrippedCrimsonStem) -> Self
Converts to this type from the input type.
Source§impl From<StrippedDarkOakLog> for BlockState
impl From<StrippedDarkOakLog> for BlockState
Source§fn from(b: StrippedDarkOakLog) -> Self
fn from(b: StrippedDarkOakLog) -> Self
Converts to this type from the input type.
Source§impl From<StrippedDarkOakWood> for BlockState
impl From<StrippedDarkOakWood> for BlockState
Source§fn from(b: StrippedDarkOakWood) -> Self
fn from(b: StrippedDarkOakWood) -> Self
Converts to this type from the input type.
Source§impl From<StrippedJungleLog> for BlockState
impl From<StrippedJungleLog> for BlockState
Source§fn from(b: StrippedJungleLog) -> Self
fn from(b: StrippedJungleLog) -> Self
Converts to this type from the input type.
Source§impl From<StrippedJungleWood> for BlockState
impl From<StrippedJungleWood> for BlockState
Source§fn from(b: StrippedJungleWood) -> Self
fn from(b: StrippedJungleWood) -> Self
Converts to this type from the input type.
Source§impl From<StrippedMangroveLog> for BlockState
impl From<StrippedMangroveLog> for BlockState
Source§fn from(b: StrippedMangroveLog) -> Self
fn from(b: StrippedMangroveLog) -> Self
Converts to this type from the input type.
Source§impl From<StrippedMangroveWood> for BlockState
impl From<StrippedMangroveWood> for BlockState
Source§fn from(b: StrippedMangroveWood) -> Self
fn from(b: StrippedMangroveWood) -> Self
Converts to this type from the input type.
Source§impl From<StrippedOakLog> for BlockState
impl From<StrippedOakLog> for BlockState
Source§fn from(b: StrippedOakLog) -> Self
fn from(b: StrippedOakLog) -> Self
Converts to this type from the input type.
Source§impl From<StrippedOakWood> for BlockState
impl From<StrippedOakWood> for BlockState
Source§fn from(b: StrippedOakWood) -> Self
fn from(b: StrippedOakWood) -> Self
Converts to this type from the input type.
Source§impl From<StrippedPaleOakLog> for BlockState
impl From<StrippedPaleOakLog> for BlockState
Source§fn from(b: StrippedPaleOakLog) -> Self
fn from(b: StrippedPaleOakLog) -> Self
Converts to this type from the input type.
Source§impl From<StrippedPaleOakWood> for BlockState
impl From<StrippedPaleOakWood> for BlockState
Source§fn from(b: StrippedPaleOakWood) -> Self
fn from(b: StrippedPaleOakWood) -> Self
Converts to this type from the input type.
Source§impl From<StrippedSpruceLog> for BlockState
impl From<StrippedSpruceLog> for BlockState
Source§fn from(b: StrippedSpruceLog) -> Self
fn from(b: StrippedSpruceLog) -> Self
Converts to this type from the input type.
Source§impl From<StrippedSpruceWood> for BlockState
impl From<StrippedSpruceWood> for BlockState
Source§fn from(b: StrippedSpruceWood) -> Self
fn from(b: StrippedSpruceWood) -> Self
Converts to this type from the input type.
Source§impl From<StrippedWarpedHyphae> for BlockState
impl From<StrippedWarpedHyphae> for BlockState
Source§fn from(b: StrippedWarpedHyphae) -> Self
fn from(b: StrippedWarpedHyphae) -> Self
Converts to this type from the input type.
Source§impl From<StrippedWarpedStem> for BlockState
impl From<StrippedWarpedStem> for BlockState
Source§fn from(b: StrippedWarpedStem) -> Self
fn from(b: StrippedWarpedStem) -> Self
Converts to this type from the input type.
Source§impl From<StructureBlock> for BlockState
impl From<StructureBlock> for BlockState
Source§fn from(b: StructureBlock) -> Self
fn from(b: StructureBlock) -> Self
Converts to this type from the input type.
Source§impl From<StructureVoid> for BlockState
impl From<StructureVoid> for BlockState
Source§fn from(b: StructureVoid) -> Self
fn from(b: StructureVoid) -> Self
Converts to this type from the input type.
Source§impl From<SugarCane> for BlockState
impl From<SugarCane> for BlockState
Source§impl From<Sunflower> for BlockState
impl From<Sunflower> for BlockState
Source§impl From<SuspiciousGravel> for BlockState
impl From<SuspiciousGravel> for BlockState
Source§fn from(b: SuspiciousGravel) -> Self
fn from(b: SuspiciousGravel) -> Self
Converts to this type from the input type.
Source§impl From<SuspiciousSand> for BlockState
impl From<SuspiciousSand> for BlockState
Source§fn from(b: SuspiciousSand) -> Self
fn from(b: SuspiciousSand) -> Self
Converts to this type from the input type.
Source§impl From<SweetBerryBush> for BlockState
impl From<SweetBerryBush> for BlockState
Source§fn from(b: SweetBerryBush) -> Self
fn from(b: SweetBerryBush) -> Self
Converts to this type from the input type.
Source§impl From<TallGrass> for BlockState
impl From<TallGrass> for BlockState
Source§impl From<TallSeagrass> for BlockState
impl From<TallSeagrass> for BlockState
Source§fn from(b: TallSeagrass) -> Self
fn from(b: TallSeagrass) -> Self
Converts to this type from the input type.
Source§impl From<Target> for BlockState
impl From<Target> for BlockState
Source§impl From<Terracotta> for BlockState
impl From<Terracotta> for BlockState
Source§fn from(b: Terracotta) -> Self
fn from(b: Terracotta) -> Self
Converts to this type from the input type.
Source§impl From<TintedGlass> for BlockState
impl From<TintedGlass> for BlockState
Source§fn from(b: TintedGlass) -> Self
fn from(b: TintedGlass) -> Self
Converts to this type from the input type.
Source§impl From<Tnt> for BlockState
impl From<Tnt> for BlockState
Source§impl From<Torch> for BlockState
impl From<Torch> for BlockState
Source§impl From<Torchflower> for BlockState
impl From<Torchflower> for BlockState
Source§fn from(b: Torchflower) -> Self
fn from(b: Torchflower) -> Self
Converts to this type from the input type.
Source§impl From<TorchflowerCrop> for BlockState
impl From<TorchflowerCrop> for BlockState
Source§fn from(b: TorchflowerCrop) -> Self
fn from(b: TorchflowerCrop) -> Self
Converts to this type from the input type.
Source§impl From<TrappedChest> for BlockState
impl From<TrappedChest> for BlockState
Source§fn from(b: TrappedChest) -> Self
fn from(b: TrappedChest) -> Self
Converts to this type from the input type.
Source§impl From<TrialSpawner> for BlockState
impl From<TrialSpawner> for BlockState
Source§fn from(b: TrialSpawner) -> Self
fn from(b: TrialSpawner) -> Self
Converts to this type from the input type.
Source§impl From<Tripwire> for BlockState
impl From<Tripwire> for BlockState
Source§impl From<TripwireHook> for BlockState
impl From<TripwireHook> for BlockState
Source§fn from(b: TripwireHook) -> Self
fn from(b: TripwireHook) -> Self
Converts to this type from the input type.
Source§impl From<TubeCoral> for BlockState
impl From<TubeCoral> for BlockState
Source§impl From<TubeCoralBlock> for BlockState
impl From<TubeCoralBlock> for BlockState
Source§fn from(b: TubeCoralBlock) -> Self
fn from(b: TubeCoralBlock) -> Self
Converts to this type from the input type.
Source§impl From<TubeCoralFan> for BlockState
impl From<TubeCoralFan> for BlockState
Source§fn from(b: TubeCoralFan) -> Self
fn from(b: TubeCoralFan) -> Self
Converts to this type from the input type.
Source§impl From<TubeCoralWallFan> for BlockState
impl From<TubeCoralWallFan> for BlockState
Source§fn from(b: TubeCoralWallFan) -> Self
fn from(b: TubeCoralWallFan) -> Self
Converts to this type from the input type.
Source§impl From<Tuff> for BlockState
impl From<Tuff> for BlockState
Source§impl From<TuffBrickSlab> for BlockState
impl From<TuffBrickSlab> for BlockState
Source§fn from(b: TuffBrickSlab) -> Self
fn from(b: TuffBrickSlab) -> Self
Converts to this type from the input type.
Source§impl From<TuffBrickStairs> for BlockState
impl From<TuffBrickStairs> for BlockState
Source§fn from(b: TuffBrickStairs) -> Self
fn from(b: TuffBrickStairs) -> Self
Converts to this type from the input type.
Source§impl From<TuffBrickWall> for BlockState
impl From<TuffBrickWall> for BlockState
Source§fn from(b: TuffBrickWall) -> Self
fn from(b: TuffBrickWall) -> Self
Converts to this type from the input type.
Source§impl From<TuffBricks> for BlockState
impl From<TuffBricks> for BlockState
Source§fn from(b: TuffBricks) -> Self
fn from(b: TuffBricks) -> Self
Converts to this type from the input type.
Source§impl From<TuffSlab> for BlockState
impl From<TuffSlab> for BlockState
Source§impl From<TuffStairs> for BlockState
impl From<TuffStairs> for BlockState
Source§fn from(b: TuffStairs) -> Self
fn from(b: TuffStairs) -> Self
Converts to this type from the input type.
Source§impl From<TuffWall> for BlockState
impl From<TuffWall> for BlockState
Source§impl From<TurtleEgg> for BlockState
impl From<TurtleEgg> for BlockState
Source§impl From<TwistingVines> for BlockState
impl From<TwistingVines> for BlockState
Source§fn from(b: TwistingVines) -> Self
fn from(b: TwistingVines) -> Self
Converts to this type from the input type.
Source§impl From<TwistingVinesPlant> for BlockState
impl From<TwistingVinesPlant> for BlockState
Source§fn from(b: TwistingVinesPlant) -> Self
fn from(b: TwistingVinesPlant) -> Self
Converts to this type from the input type.
Source§impl From<Vault> for BlockState
impl From<Vault> for BlockState
Source§impl From<VerdantFroglight> for BlockState
impl From<VerdantFroglight> for BlockState
Source§fn from(b: VerdantFroglight) -> Self
fn from(b: VerdantFroglight) -> Self
Converts to this type from the input type.
Source§impl From<Vine> for BlockState
impl From<Vine> for BlockState
Source§impl From<VoidAir> for BlockState
impl From<VoidAir> for BlockState
Source§impl From<WallTorch> for BlockState
impl From<WallTorch> for BlockState
Source§impl From<WarpedButton> for BlockState
impl From<WarpedButton> for BlockState
Source§fn from(b: WarpedButton) -> Self
fn from(b: WarpedButton) -> Self
Converts to this type from the input type.
Source§impl From<WarpedDoor> for BlockState
impl From<WarpedDoor> for BlockState
Source§fn from(b: WarpedDoor) -> Self
fn from(b: WarpedDoor) -> Self
Converts to this type from the input type.
Source§impl From<WarpedFence> for BlockState
impl From<WarpedFence> for BlockState
Source§fn from(b: WarpedFence) -> Self
fn from(b: WarpedFence) -> Self
Converts to this type from the input type.
Source§impl From<WarpedFenceGate> for BlockState
impl From<WarpedFenceGate> for BlockState
Source§fn from(b: WarpedFenceGate) -> Self
fn from(b: WarpedFenceGate) -> Self
Converts to this type from the input type.
Source§impl From<WarpedFungus> for BlockState
impl From<WarpedFungus> for BlockState
Source§fn from(b: WarpedFungus) -> Self
fn from(b: WarpedFungus) -> Self
Converts to this type from the input type.
Source§impl From<WarpedHangingSign> for BlockState
impl From<WarpedHangingSign> for BlockState
Source§fn from(b: WarpedHangingSign) -> Self
fn from(b: WarpedHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<WarpedHyphae> for BlockState
impl From<WarpedHyphae> for BlockState
Source§fn from(b: WarpedHyphae) -> Self
fn from(b: WarpedHyphae) -> Self
Converts to this type from the input type.
Source§impl From<WarpedNylium> for BlockState
impl From<WarpedNylium> for BlockState
Source§fn from(b: WarpedNylium) -> Self
fn from(b: WarpedNylium) -> Self
Converts to this type from the input type.
Source§impl From<WarpedPlanks> for BlockState
impl From<WarpedPlanks> for BlockState
Source§fn from(b: WarpedPlanks) -> Self
fn from(b: WarpedPlanks) -> Self
Converts to this type from the input type.
Source§impl From<WarpedPressurePlate> for BlockState
impl From<WarpedPressurePlate> for BlockState
Source§fn from(b: WarpedPressurePlate) -> Self
fn from(b: WarpedPressurePlate) -> Self
Converts to this type from the input type.
Source§impl From<WarpedRoots> for BlockState
impl From<WarpedRoots> for BlockState
Source§fn from(b: WarpedRoots) -> Self
fn from(b: WarpedRoots) -> Self
Converts to this type from the input type.
Source§impl From<WarpedSign> for BlockState
impl From<WarpedSign> for BlockState
Source§fn from(b: WarpedSign) -> Self
fn from(b: WarpedSign) -> Self
Converts to this type from the input type.
Source§impl From<WarpedSlab> for BlockState
impl From<WarpedSlab> for BlockState
Source§fn from(b: WarpedSlab) -> Self
fn from(b: WarpedSlab) -> Self
Converts to this type from the input type.
Source§impl From<WarpedStairs> for BlockState
impl From<WarpedStairs> for BlockState
Source§fn from(b: WarpedStairs) -> Self
fn from(b: WarpedStairs) -> Self
Converts to this type from the input type.
Source§impl From<WarpedStem> for BlockState
impl From<WarpedStem> for BlockState
Source§fn from(b: WarpedStem) -> Self
fn from(b: WarpedStem) -> Self
Converts to this type from the input type.
Source§impl From<WarpedTrapdoor> for BlockState
impl From<WarpedTrapdoor> for BlockState
Source§fn from(b: WarpedTrapdoor) -> Self
fn from(b: WarpedTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<WarpedWallHangingSign> for BlockState
impl From<WarpedWallHangingSign> for BlockState
Source§fn from(b: WarpedWallHangingSign) -> Self
fn from(b: WarpedWallHangingSign) -> Self
Converts to this type from the input type.
Source§impl From<WarpedWallSign> for BlockState
impl From<WarpedWallSign> for BlockState
Source§fn from(b: WarpedWallSign) -> Self
fn from(b: WarpedWallSign) -> Self
Converts to this type from the input type.
Source§impl From<WarpedWartBlock> for BlockState
impl From<WarpedWartBlock> for BlockState
Source§fn from(b: WarpedWartBlock) -> Self
fn from(b: WarpedWartBlock) -> Self
Converts to this type from the input type.
Source§impl From<Water> for BlockState
impl From<Water> for BlockState
Source§impl From<WaterCauldron> for BlockState
impl From<WaterCauldron> for BlockState
Source§fn from(b: WaterCauldron) -> Self
fn from(b: WaterCauldron) -> Self
Converts to this type from the input type.
Source§impl From<WaxedChiseledCopper> for BlockState
impl From<WaxedChiseledCopper> for BlockState
Source§fn from(b: WaxedChiseledCopper) -> Self
fn from(b: WaxedChiseledCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedCopperBlock> for BlockState
impl From<WaxedCopperBlock> for BlockState
Source§fn from(b: WaxedCopperBlock) -> Self
fn from(b: WaxedCopperBlock) -> Self
Converts to this type from the input type.
Source§impl From<WaxedCopperBulb> for BlockState
impl From<WaxedCopperBulb> for BlockState
Source§fn from(b: WaxedCopperBulb) -> Self
fn from(b: WaxedCopperBulb) -> Self
Converts to this type from the input type.
Source§impl From<WaxedCopperDoor> for BlockState
impl From<WaxedCopperDoor> for BlockState
Source§fn from(b: WaxedCopperDoor) -> Self
fn from(b: WaxedCopperDoor) -> Self
Converts to this type from the input type.
Source§impl From<WaxedCopperGrate> for BlockState
impl From<WaxedCopperGrate> for BlockState
Source§fn from(b: WaxedCopperGrate) -> Self
fn from(b: WaxedCopperGrate) -> Self
Converts to this type from the input type.
Source§impl From<WaxedCopperTrapdoor> for BlockState
impl From<WaxedCopperTrapdoor> for BlockState
Source§fn from(b: WaxedCopperTrapdoor) -> Self
fn from(b: WaxedCopperTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<WaxedCutCopper> for BlockState
impl From<WaxedCutCopper> for BlockState
Source§fn from(b: WaxedCutCopper) -> Self
fn from(b: WaxedCutCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedCutCopperSlab> for BlockState
impl From<WaxedCutCopperSlab> for BlockState
Source§fn from(b: WaxedCutCopperSlab) -> Self
fn from(b: WaxedCutCopperSlab) -> Self
Converts to this type from the input type.
Source§impl From<WaxedCutCopperStairs> for BlockState
impl From<WaxedCutCopperStairs> for BlockState
Source§fn from(b: WaxedCutCopperStairs) -> Self
fn from(b: WaxedCutCopperStairs) -> Self
Converts to this type from the input type.
Source§impl From<WaxedExposedChiseledCopper> for BlockState
impl From<WaxedExposedChiseledCopper> for BlockState
Source§fn from(b: WaxedExposedChiseledCopper) -> Self
fn from(b: WaxedExposedChiseledCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedExposedCopper> for BlockState
impl From<WaxedExposedCopper> for BlockState
Source§fn from(b: WaxedExposedCopper) -> Self
fn from(b: WaxedExposedCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedExposedCopperBulb> for BlockState
impl From<WaxedExposedCopperBulb> for BlockState
Source§fn from(b: WaxedExposedCopperBulb) -> Self
fn from(b: WaxedExposedCopperBulb) -> Self
Converts to this type from the input type.
Source§impl From<WaxedExposedCopperDoor> for BlockState
impl From<WaxedExposedCopperDoor> for BlockState
Source§fn from(b: WaxedExposedCopperDoor) -> Self
fn from(b: WaxedExposedCopperDoor) -> Self
Converts to this type from the input type.
Source§impl From<WaxedExposedCopperGrate> for BlockState
impl From<WaxedExposedCopperGrate> for BlockState
Source§fn from(b: WaxedExposedCopperGrate) -> Self
fn from(b: WaxedExposedCopperGrate) -> Self
Converts to this type from the input type.
Source§impl From<WaxedExposedCopperTrapdoor> for BlockState
impl From<WaxedExposedCopperTrapdoor> for BlockState
Source§fn from(b: WaxedExposedCopperTrapdoor) -> Self
fn from(b: WaxedExposedCopperTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<WaxedExposedCutCopper> for BlockState
impl From<WaxedExposedCutCopper> for BlockState
Source§fn from(b: WaxedExposedCutCopper) -> Self
fn from(b: WaxedExposedCutCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedExposedCutCopperSlab> for BlockState
impl From<WaxedExposedCutCopperSlab> for BlockState
Source§fn from(b: WaxedExposedCutCopperSlab) -> Self
fn from(b: WaxedExposedCutCopperSlab) -> Self
Converts to this type from the input type.
Source§impl From<WaxedExposedCutCopperStairs> for BlockState
impl From<WaxedExposedCutCopperStairs> for BlockState
Source§fn from(b: WaxedExposedCutCopperStairs) -> Self
fn from(b: WaxedExposedCutCopperStairs) -> Self
Converts to this type from the input type.
Source§impl From<WaxedOxidizedChiseledCopper> for BlockState
impl From<WaxedOxidizedChiseledCopper> for BlockState
Source§fn from(b: WaxedOxidizedChiseledCopper) -> Self
fn from(b: WaxedOxidizedChiseledCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedOxidizedCopper> for BlockState
impl From<WaxedOxidizedCopper> for BlockState
Source§fn from(b: WaxedOxidizedCopper) -> Self
fn from(b: WaxedOxidizedCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedOxidizedCopperBulb> for BlockState
impl From<WaxedOxidizedCopperBulb> for BlockState
Source§fn from(b: WaxedOxidizedCopperBulb) -> Self
fn from(b: WaxedOxidizedCopperBulb) -> Self
Converts to this type from the input type.
Source§impl From<WaxedOxidizedCopperDoor> for BlockState
impl From<WaxedOxidizedCopperDoor> for BlockState
Source§fn from(b: WaxedOxidizedCopperDoor) -> Self
fn from(b: WaxedOxidizedCopperDoor) -> Self
Converts to this type from the input type.
Source§impl From<WaxedOxidizedCopperGrate> for BlockState
impl From<WaxedOxidizedCopperGrate> for BlockState
Source§fn from(b: WaxedOxidizedCopperGrate) -> Self
fn from(b: WaxedOxidizedCopperGrate) -> Self
Converts to this type from the input type.
Source§impl From<WaxedOxidizedCopperTrapdoor> for BlockState
impl From<WaxedOxidizedCopperTrapdoor> for BlockState
Source§fn from(b: WaxedOxidizedCopperTrapdoor) -> Self
fn from(b: WaxedOxidizedCopperTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<WaxedOxidizedCutCopper> for BlockState
impl From<WaxedOxidizedCutCopper> for BlockState
Source§fn from(b: WaxedOxidizedCutCopper) -> Self
fn from(b: WaxedOxidizedCutCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedOxidizedCutCopperSlab> for BlockState
impl From<WaxedOxidizedCutCopperSlab> for BlockState
Source§fn from(b: WaxedOxidizedCutCopperSlab) -> Self
fn from(b: WaxedOxidizedCutCopperSlab) -> Self
Converts to this type from the input type.
Source§impl From<WaxedOxidizedCutCopperStairs> for BlockState
impl From<WaxedOxidizedCutCopperStairs> for BlockState
Source§fn from(b: WaxedOxidizedCutCopperStairs) -> Self
fn from(b: WaxedOxidizedCutCopperStairs) -> Self
Converts to this type from the input type.
Source§impl From<WaxedWeatheredChiseledCopper> for BlockState
impl From<WaxedWeatheredChiseledCopper> for BlockState
Source§fn from(b: WaxedWeatheredChiseledCopper) -> Self
fn from(b: WaxedWeatheredChiseledCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedWeatheredCopper> for BlockState
impl From<WaxedWeatheredCopper> for BlockState
Source§fn from(b: WaxedWeatheredCopper) -> Self
fn from(b: WaxedWeatheredCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedWeatheredCopperBulb> for BlockState
impl From<WaxedWeatheredCopperBulb> for BlockState
Source§fn from(b: WaxedWeatheredCopperBulb) -> Self
fn from(b: WaxedWeatheredCopperBulb) -> Self
Converts to this type from the input type.
Source§impl From<WaxedWeatheredCopperDoor> for BlockState
impl From<WaxedWeatheredCopperDoor> for BlockState
Source§fn from(b: WaxedWeatheredCopperDoor) -> Self
fn from(b: WaxedWeatheredCopperDoor) -> Self
Converts to this type from the input type.
Source§impl From<WaxedWeatheredCopperGrate> for BlockState
impl From<WaxedWeatheredCopperGrate> for BlockState
Source§fn from(b: WaxedWeatheredCopperGrate) -> Self
fn from(b: WaxedWeatheredCopperGrate) -> Self
Converts to this type from the input type.
Source§impl From<WaxedWeatheredCopperTrapdoor> for BlockState
impl From<WaxedWeatheredCopperTrapdoor> for BlockState
Source§fn from(b: WaxedWeatheredCopperTrapdoor) -> Self
fn from(b: WaxedWeatheredCopperTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<WaxedWeatheredCutCopper> for BlockState
impl From<WaxedWeatheredCutCopper> for BlockState
Source§fn from(b: WaxedWeatheredCutCopper) -> Self
fn from(b: WaxedWeatheredCutCopper) -> Self
Converts to this type from the input type.
Source§impl From<WaxedWeatheredCutCopperSlab> for BlockState
impl From<WaxedWeatheredCutCopperSlab> for BlockState
Source§fn from(b: WaxedWeatheredCutCopperSlab) -> Self
fn from(b: WaxedWeatheredCutCopperSlab) -> Self
Converts to this type from the input type.
Source§impl From<WaxedWeatheredCutCopperStairs> for BlockState
impl From<WaxedWeatheredCutCopperStairs> for BlockState
Source§fn from(b: WaxedWeatheredCutCopperStairs) -> Self
fn from(b: WaxedWeatheredCutCopperStairs) -> Self
Converts to this type from the input type.
Source§impl From<WeatheredChiseledCopper> for BlockState
impl From<WeatheredChiseledCopper> for BlockState
Source§fn from(b: WeatheredChiseledCopper) -> Self
fn from(b: WeatheredChiseledCopper) -> Self
Converts to this type from the input type.
Source§impl From<WeatheredCopper> for BlockState
impl From<WeatheredCopper> for BlockState
Source§fn from(b: WeatheredCopper) -> Self
fn from(b: WeatheredCopper) -> Self
Converts to this type from the input type.
Source§impl From<WeatheredCopperBulb> for BlockState
impl From<WeatheredCopperBulb> for BlockState
Source§fn from(b: WeatheredCopperBulb) -> Self
fn from(b: WeatheredCopperBulb) -> Self
Converts to this type from the input type.
Source§impl From<WeatheredCopperDoor> for BlockState
impl From<WeatheredCopperDoor> for BlockState
Source§fn from(b: WeatheredCopperDoor) -> Self
fn from(b: WeatheredCopperDoor) -> Self
Converts to this type from the input type.
Source§impl From<WeatheredCopperGrate> for BlockState
impl From<WeatheredCopperGrate> for BlockState
Source§fn from(b: WeatheredCopperGrate) -> Self
fn from(b: WeatheredCopperGrate) -> Self
Converts to this type from the input type.
Source§impl From<WeatheredCopperTrapdoor> for BlockState
impl From<WeatheredCopperTrapdoor> for BlockState
Source§fn from(b: WeatheredCopperTrapdoor) -> Self
fn from(b: WeatheredCopperTrapdoor) -> Self
Converts to this type from the input type.
Source§impl From<WeatheredCutCopper> for BlockState
impl From<WeatheredCutCopper> for BlockState
Source§fn from(b: WeatheredCutCopper) -> Self
fn from(b: WeatheredCutCopper) -> Self
Converts to this type from the input type.
Source§impl From<WeatheredCutCopperSlab> for BlockState
impl From<WeatheredCutCopperSlab> for BlockState
Source§fn from(b: WeatheredCutCopperSlab) -> Self
fn from(b: WeatheredCutCopperSlab) -> Self
Converts to this type from the input type.
Source§impl From<WeatheredCutCopperStairs> for BlockState
impl From<WeatheredCutCopperStairs> for BlockState
Source§fn from(b: WeatheredCutCopperStairs) -> Self
fn from(b: WeatheredCutCopperStairs) -> Self
Converts to this type from the input type.
Source§impl From<WeepingVines> for BlockState
impl From<WeepingVines> for BlockState
Source§fn from(b: WeepingVines) -> Self
fn from(b: WeepingVines) -> Self
Converts to this type from the input type.
Source§impl From<WeepingVinesPlant> for BlockState
impl From<WeepingVinesPlant> for BlockState
Source§fn from(b: WeepingVinesPlant) -> Self
fn from(b: WeepingVinesPlant) -> Self
Converts to this type from the input type.
Source§impl From<WetSponge> for BlockState
impl From<WetSponge> for BlockState
Source§impl From<Wheat> for BlockState
impl From<Wheat> for BlockState
Source§impl From<WhiteBanner> for BlockState
impl From<WhiteBanner> for BlockState
Source§fn from(b: WhiteBanner) -> Self
fn from(b: WhiteBanner) -> Self
Converts to this type from the input type.
Source§impl From<WhiteBed> for BlockState
impl From<WhiteBed> for BlockState
Source§impl From<WhiteCandle> for BlockState
impl From<WhiteCandle> for BlockState
Source§fn from(b: WhiteCandle) -> Self
fn from(b: WhiteCandle) -> Self
Converts to this type from the input type.
Source§impl From<WhiteCandleCake> for BlockState
impl From<WhiteCandleCake> for BlockState
Source§fn from(b: WhiteCandleCake) -> Self
fn from(b: WhiteCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<WhiteCarpet> for BlockState
impl From<WhiteCarpet> for BlockState
Source§fn from(b: WhiteCarpet) -> Self
fn from(b: WhiteCarpet) -> Self
Converts to this type from the input type.
Source§impl From<WhiteConcrete> for BlockState
impl From<WhiteConcrete> for BlockState
Source§fn from(b: WhiteConcrete) -> Self
fn from(b: WhiteConcrete) -> Self
Converts to this type from the input type.
Source§impl From<WhiteConcretePowder> for BlockState
impl From<WhiteConcretePowder> for BlockState
Source§fn from(b: WhiteConcretePowder) -> Self
fn from(b: WhiteConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<WhiteGlazedTerracotta> for BlockState
impl From<WhiteGlazedTerracotta> for BlockState
Source§fn from(b: WhiteGlazedTerracotta) -> Self
fn from(b: WhiteGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<WhiteShulkerBox> for BlockState
impl From<WhiteShulkerBox> for BlockState
Source§fn from(b: WhiteShulkerBox) -> Self
fn from(b: WhiteShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<WhiteStainedGlass> for BlockState
impl From<WhiteStainedGlass> for BlockState
Source§fn from(b: WhiteStainedGlass) -> Self
fn from(b: WhiteStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<WhiteStainedGlassPane> for BlockState
impl From<WhiteStainedGlassPane> for BlockState
Source§fn from(b: WhiteStainedGlassPane) -> Self
fn from(b: WhiteStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<WhiteTerracotta> for BlockState
impl From<WhiteTerracotta> for BlockState
Source§fn from(b: WhiteTerracotta) -> Self
fn from(b: WhiteTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<WhiteTulip> for BlockState
impl From<WhiteTulip> for BlockState
Source§fn from(b: WhiteTulip) -> Self
fn from(b: WhiteTulip) -> Self
Converts to this type from the input type.
Source§impl From<WhiteWallBanner> for BlockState
impl From<WhiteWallBanner> for BlockState
Source§fn from(b: WhiteWallBanner) -> Self
fn from(b: WhiteWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<WhiteWool> for BlockState
impl From<WhiteWool> for BlockState
Source§impl From<WitherRose> for BlockState
impl From<WitherRose> for BlockState
Source§fn from(b: WitherRose) -> Self
fn from(b: WitherRose) -> Self
Converts to this type from the input type.
Source§impl From<WitherSkeletonSkull> for BlockState
impl From<WitherSkeletonSkull> for BlockState
Source§fn from(b: WitherSkeletonSkull) -> Self
fn from(b: WitherSkeletonSkull) -> Self
Converts to this type from the input type.
Source§impl From<WitherSkeletonWallSkull> for BlockState
impl From<WitherSkeletonWallSkull> for BlockState
Source§fn from(b: WitherSkeletonWallSkull) -> Self
fn from(b: WitherSkeletonWallSkull) -> Self
Converts to this type from the input type.
Source§impl From<YellowBanner> for BlockState
impl From<YellowBanner> for BlockState
Source§fn from(b: YellowBanner) -> Self
fn from(b: YellowBanner) -> Self
Converts to this type from the input type.
Source§impl From<YellowBed> for BlockState
impl From<YellowBed> for BlockState
Source§impl From<YellowCandle> for BlockState
impl From<YellowCandle> for BlockState
Source§fn from(b: YellowCandle) -> Self
fn from(b: YellowCandle) -> Self
Converts to this type from the input type.
Source§impl From<YellowCandleCake> for BlockState
impl From<YellowCandleCake> for BlockState
Source§fn from(b: YellowCandleCake) -> Self
fn from(b: YellowCandleCake) -> Self
Converts to this type from the input type.
Source§impl From<YellowCarpet> for BlockState
impl From<YellowCarpet> for BlockState
Source§fn from(b: YellowCarpet) -> Self
fn from(b: YellowCarpet) -> Self
Converts to this type from the input type.
Source§impl From<YellowConcrete> for BlockState
impl From<YellowConcrete> for BlockState
Source§fn from(b: YellowConcrete) -> Self
fn from(b: YellowConcrete) -> Self
Converts to this type from the input type.
Source§impl From<YellowConcretePowder> for BlockState
impl From<YellowConcretePowder> for BlockState
Source§fn from(b: YellowConcretePowder) -> Self
fn from(b: YellowConcretePowder) -> Self
Converts to this type from the input type.
Source§impl From<YellowGlazedTerracotta> for BlockState
impl From<YellowGlazedTerracotta> for BlockState
Source§fn from(b: YellowGlazedTerracotta) -> Self
fn from(b: YellowGlazedTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<YellowShulkerBox> for BlockState
impl From<YellowShulkerBox> for BlockState
Source§fn from(b: YellowShulkerBox) -> Self
fn from(b: YellowShulkerBox) -> Self
Converts to this type from the input type.
Source§impl From<YellowStainedGlass> for BlockState
impl From<YellowStainedGlass> for BlockState
Source§fn from(b: YellowStainedGlass) -> Self
fn from(b: YellowStainedGlass) -> Self
Converts to this type from the input type.
Source§impl From<YellowStainedGlassPane> for BlockState
impl From<YellowStainedGlassPane> for BlockState
Source§fn from(b: YellowStainedGlassPane) -> Self
fn from(b: YellowStainedGlassPane) -> Self
Converts to this type from the input type.
Source§impl From<YellowTerracotta> for BlockState
impl From<YellowTerracotta> for BlockState
Source§fn from(b: YellowTerracotta) -> Self
fn from(b: YellowTerracotta) -> Self
Converts to this type from the input type.
Source§impl From<YellowWallBanner> for BlockState
impl From<YellowWallBanner> for BlockState
Source§fn from(b: YellowWallBanner) -> Self
fn from(b: YellowWallBanner) -> Self
Converts to this type from the input type.
Source§impl From<YellowWool> for BlockState
impl From<YellowWool> for BlockState
Source§fn from(b: YellowWool) -> Self
fn from(b: YellowWool) -> Self
Converts to this type from the input type.
Source§impl From<ZombieHead> for BlockState
impl From<ZombieHead> for BlockState
Source§fn from(b: ZombieHead) -> Self
fn from(b: ZombieHead) -> Self
Converts to this type from the input type.
Source§impl From<ZombieWallHead> for BlockState
impl From<ZombieWallHead> for BlockState
Source§fn from(b: ZombieWallHead) -> Self
fn from(b: ZombieWallHead) -> Self
Converts to this type from the input type.
Source§impl Hash for BlockState
impl Hash for BlockState
Source§impl PartialEq for BlockState
impl PartialEq for BlockState
Source§impl TryFrom<u16> for BlockState
impl TryFrom<u16> for BlockState
Source§impl TryFrom<u32> for BlockState
impl TryFrom<u32> for BlockState
impl Copy for BlockState
impl Eq for BlockState
impl StructuralPartialEq for BlockState
Auto Trait Implementations§
impl Freeze for BlockState
impl RefUnwindSafe for BlockState
impl Send for BlockState
impl Sync for BlockState
impl Unpin for BlockState
impl UnwindSafe for BlockState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more