pub struct PointRecipe;Expand description
The recipe you need to win! An Assembler recipe that creates points. Converts 4 iron and 4 copper into 1 point resource. Takes 20 ticks.
Trait Implementations§
Source§impl AssemblerRecipe for PointRecipe
impl AssemblerRecipe for PointRecipe
const INPUT1: ResourceType = ResourceType::Iron
const INPUT1_AMOUNT: u32 = 4u32
const INPUT2: ResourceType = ResourceType::Copper
const INPUT2_AMOUNT: u32 = 4u32
const OUTPUT: ResourceType = ResourceType::Point
const OUTPUT_AMOUNT: u32 = 1u32
const TIME: u64 = 20u64
Auto Trait Implementations§
impl Freeze for PointRecipe
impl RefUnwindSafe for PointRecipe
impl Send for PointRecipe
impl Sync for PointRecipe
impl Unpin for PointRecipe
impl UnwindSafe for PointRecipe
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