pub enum WorkbenchState {
Idle,
Crafting {
job_id: u64,
elapsed: f32,
duration: f32,
},
Broken {
repair_cost: u64,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for WorkbenchState
impl Clone for WorkbenchState
Source§fn clone(&self) -> WorkbenchState
fn clone(&self) -> WorkbenchState
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 moreAuto Trait Implementations§
impl Freeze for WorkbenchState
impl RefUnwindSafe for WorkbenchState
impl Send for WorkbenchState
impl Sync for WorkbenchState
impl Unpin for WorkbenchState
impl UnsafeUnpin for WorkbenchState
impl UnwindSafe for WorkbenchState
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