pub struct CraftSecret {
pub crafting_table_id: LegacyId,
pub selected_ingredient_ids: Vec<LegacyId>,
}
Fields§
§crafting_table_id: LegacyId
§selected_ingredient_ids: Vec<LegacyId>
Trait Implementations§
source§impl BaseParser for CraftSecret
impl BaseParser for CraftSecret
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 CraftSecret
impl Clone for CraftSecret
source§fn clone(&self) -> CraftSecret
fn clone(&self) -> CraftSecret
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 CraftSecret
impl Debug for CraftSecret
source§impl Default for CraftSecret
impl Default for CraftSecret
source§fn default() -> CraftSecret
fn default() -> CraftSecret
Returns the “default value” for a type. Read more
source§impl PacketVariable for CraftSecret
impl PacketVariable for CraftSecret
source§impl PartialEq<CraftSecret> for CraftSecret
impl PartialEq<CraftSecret> for CraftSecret
source§fn eq(&self, other: &CraftSecret) -> bool
fn eq(&self, other: &CraftSecret) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CraftSecret
Auto Trait Implementations§
impl RefUnwindSafe for CraftSecret
impl Send for CraftSecret
impl Sync for CraftSecret
impl Unpin for CraftSecret
impl UnwindSafe for CraftSecret
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