pub struct RecipeCraftingShapedSpec {
pub width: VarInt,
pub height: VarInt,
pub group: String,
pub ingredients: Vec<RecipeIngredient>,
pub result: Slot,
}
Fields§
§width: VarInt
§height: VarInt
§group: String
§ingredients: Vec<RecipeIngredient>
§result: Slot
Trait Implementations§
Source§impl Clone for RecipeCraftingShapedSpec
impl Clone for RecipeCraftingShapedSpec
Source§fn clone(&self) -> RecipeCraftingShapedSpec
fn clone(&self) -> RecipeCraftingShapedSpec
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RecipeCraftingShapedSpec
impl Debug for RecipeCraftingShapedSpec
Source§impl Deserialize for RecipeCraftingShapedSpec
impl Deserialize for RecipeCraftingShapedSpec
fn mc_deserialize(data: &[u8]) -> DeserializeResult<'_, Self>
Source§impl PartialEq for RecipeCraftingShapedSpec
impl PartialEq for RecipeCraftingShapedSpec
Source§impl Serialize for RecipeCraftingShapedSpec
impl Serialize for RecipeCraftingShapedSpec
fn mc_serialize<S: Serializer>(&self, to: &mut S) -> SerializeResult
impl StructuralPartialEq for RecipeCraftingShapedSpec
Auto Trait Implementations§
impl Freeze for RecipeCraftingShapedSpec
impl RefUnwindSafe for RecipeCraftingShapedSpec
impl Send for RecipeCraftingShapedSpec
impl Sync for RecipeCraftingShapedSpec
impl Unpin for RecipeCraftingShapedSpec
impl UnwindSafe for RecipeCraftingShapedSpec
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