pub struct CraftingQueueItem {
pub count: u32,
pub index: u32,
pub prerequisite: bool,
pub recipe: &'static str,
}Fields§
§count: u32§index: u32§prerequisite: bool§recipe: &'static strTrait Implementations§
Source§impl Clone for CraftingQueueItem
impl Clone for CraftingQueueItem
Source§fn clone(&self) -> CraftingQueueItem
fn clone(&self) -> CraftingQueueItem
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 moreimpl Copy for CraftingQueueItem
Source§impl Debug for CraftingQueueItem
impl Debug for CraftingQueueItem
Source§impl Default for CraftingQueueItem
impl Default for CraftingQueueItem
Source§fn default() -> CraftingQueueItem
fn default() -> CraftingQueueItem
Returns the “default value” for a type. Read more
Source§impl PartialEq for CraftingQueueItem
impl PartialEq for CraftingQueueItem
impl StructuralPartialEq for CraftingQueueItem
Auto Trait Implementations§
impl Freeze for CraftingQueueItem
impl RefUnwindSafe for CraftingQueueItem
impl Send for CraftingQueueItem
impl Sync for CraftingQueueItem
impl Unpin for CraftingQueueItem
impl UnsafeUnpin for CraftingQueueItem
impl UnwindSafe for CraftingQueueItem
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