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