pub struct CraftingRecipe {
pub ingredients: Vec<OutgoingIngredient>,
}
Fields§
§ingredients: Vec<OutgoingIngredient>
Trait Implementations§
Source§impl BaseParser for CraftingRecipe
impl BaseParser for CraftingRecipe
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
Source§impl Clone for CraftingRecipe
impl Clone for CraftingRecipe
Source§fn clone(&self) -> CraftingRecipe
fn clone(&self) -> CraftingRecipe
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 CraftingRecipe
impl Debug for CraftingRecipe
Source§impl Default for CraftingRecipe
impl Default for CraftingRecipe
Source§fn default() -> CraftingRecipe
fn default() -> CraftingRecipe
Returns the “default value” for a type. Read more
Source§impl PacketVariable for CraftingRecipe
impl PacketVariable for CraftingRecipe
Source§impl PartialEq for CraftingRecipe
impl PartialEq for CraftingRecipe
impl StructuralPartialEq for CraftingRecipe
Auto Trait Implementations§
impl Freeze for CraftingRecipe
impl RefUnwindSafe for CraftingRecipe
impl Send for CraftingRecipe
impl Sync for CraftingRecipe
impl Unpin for CraftingRecipe
impl UnwindSafe for CraftingRecipe
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