pub struct GetAllMapsParams {
pub content_type: Option<MapContentType>,
pub content_code: Option<String>,
pub page: Option<u32>,
pub size: Option<u32>,
}Expand description
struct for passing parameters to the method get_all_maps
Fields§
§content_type: Option<MapContentType>Type of content on the map.
content_code: Option<String>Content code on the map.
page: Option<u32>Page number
size: Option<u32>Page size
Implementations§
Trait Implementations§
Source§impl Clone for GetAllMapsParams
impl Clone for GetAllMapsParams
Source§fn clone(&self) -> GetAllMapsParams
fn clone(&self) -> GetAllMapsParams
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 GetAllMapsParams
impl RefUnwindSafe for GetAllMapsParams
impl Send for GetAllMapsParams
impl Sync for GetAllMapsParams
impl Unpin for GetAllMapsParams
impl UnwindSafe for GetAllMapsParams
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