pub struct GetMapByPositionParams {
    pub layer: String,
    pub x: i32,
    pub y: i32,
}Expand description
struct for passing parameters to the method get_map_by_position
Fields§
§layer: StringThe layer of the map (interior, overworld, underground).
x: i32The position x of the map.
y: i32The position y of the map.
Implementations§
Trait Implementations§
Source§impl Clone for GetMapByPositionParams
 
impl Clone for GetMapByPositionParams
Source§fn clone(&self) -> GetMapByPositionParams
 
fn clone(&self) -> GetMapByPositionParams
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 GetMapByPositionParams
impl RefUnwindSafe for GetMapByPositionParams
impl Send for GetMapByPositionParams
impl Sync for GetMapByPositionParams
impl Unpin for GetMapByPositionParams
impl UnwindSafe for GetMapByPositionParams
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