pub struct MovePicker {
pub item_instance_id: Uuid,
pub from: InventoryLocation,
pub item_label: String,
pub template_id: String,
pub stack_quantity: u32,
pub quantity: u32,
pub options: Vec<MoveOption>,
}Expand description
Active “move to…” destination picker state for the selected inventory item.
Fields§
§item_instance_id: Uuid§from: InventoryLocation§item_label: String§template_id: String§stack_quantity: u32§quantity: u32§options: Vec<MoveOption>Trait Implementations§
Source§impl Clone for MovePicker
impl Clone for MovePicker
Source§fn clone(&self) -> MovePicker
fn clone(&self) -> MovePicker
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 MovePicker
impl RefUnwindSafe for MovePicker
impl Send for MovePicker
impl Sync for MovePicker
impl Unpin for MovePicker
impl UnsafeUnpin for MovePicker
impl UnwindSafe for MovePicker
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