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