pub struct UnequipItemParams {
    pub name: String,
    pub unequip_schema: UnequipSchema,
}Expand description
struct for passing parameters to the method unequip_item
Fields§
§name: StringName of your character.
unequip_schema: UnequipSchemaImplementations§
Source§impl UnequipItemParams
 
impl UnequipItemParams
pub fn new(name: String, unequip_schema: UnequipSchema) -> Self
Trait Implementations§
Source§impl Clone for UnequipItemParams
 
impl Clone for UnequipItemParams
Source§fn clone(&self) -> UnequipItemParams
 
fn clone(&self) -> UnequipItemParams
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 UnequipItemParams
impl RefUnwindSafe for UnequipItemParams
impl Send for UnequipItemParams
impl Sync for UnequipItemParams
impl Unpin for UnequipItemParams
impl UnwindSafe for UnequipItemParams
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