pub struct CraftVesselStatus {
pub needs_vessel: bool,
pub output_label: String,
pub need_units: u32,
pub free_after_inputs: u32,
pub ok: bool,
pub vessels: Vec<CraftVesselLine>,
}Expand description
Full vessel transparency for a selected craft recipe.
Fields§
§needs_vessel: bool§output_label: String§need_units: u32§free_after_inputs: u32§ok: bool§vessels: Vec<CraftVesselLine>Trait Implementations§
Source§impl Clone for CraftVesselStatus
impl Clone for CraftVesselStatus
Source§fn clone(&self) -> CraftVesselStatus
fn clone(&self) -> CraftVesselStatus
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 moreAuto Trait Implementations§
impl Freeze for CraftVesselStatus
impl RefUnwindSafe for CraftVesselStatus
impl Send for CraftVesselStatus
impl Sync for CraftVesselStatus
impl Unpin for CraftVesselStatus
impl UnsafeUnpin for CraftVesselStatus
impl UnwindSafe for CraftVesselStatus
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