pub enum RuleBlockEntityModifierData {
Passthrough,
AppendLoot {
loot_table: Identifier,
},
}Expand description
Rule block-entity NBT modifiers.
Variants§
Passthrough
Vanilla passthrough when the field is absent.
AppendLoot
Appends loot table metadata to the output block entity.
Fields
§
loot_table: IdentifierTrait Implementations§
Source§impl Clone for RuleBlockEntityModifierData
impl Clone for RuleBlockEntityModifierData
Source§fn clone(&self) -> RuleBlockEntityModifierData
fn clone(&self) -> RuleBlockEntityModifierData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RuleBlockEntityModifierData
impl Debug for RuleBlockEntityModifierData
Source§impl Default for RuleBlockEntityModifierData
impl Default for RuleBlockEntityModifierData
Source§fn default() -> RuleBlockEntityModifierData
fn default() -> RuleBlockEntityModifierData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RuleBlockEntityModifierData
impl<'de> Deserialize<'de> for RuleBlockEntityModifierData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RuleBlockEntityModifierData
impl RefUnwindSafe for RuleBlockEntityModifierData
impl Send for RuleBlockEntityModifierData
impl Sync for RuleBlockEntityModifierData
impl Unpin for RuleBlockEntityModifierData
impl UnsafeUnpin for RuleBlockEntityModifierData
impl UnwindSafe for RuleBlockEntityModifierData
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