pub enum RequestType {
TileRequest(TileRequest),
}Expand description
The type of request to the Maptiler Cloud API
Variants§
TileRequest(TileRequest)
Trait Implementations§
Source§impl Clone for RequestType
impl Clone for RequestType
Source§fn clone(&self) -> RequestType
fn clone(&self) -> RequestType
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 moreimpl Copy for RequestType
Source§impl Debug for RequestType
impl Debug for RequestType
Source§impl From<TileRequest> for RequestType
impl From<TileRequest> for RequestType
Source§fn from(tile_request: TileRequest) -> Self
fn from(tile_request: TileRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RequestType
impl RefUnwindSafe for RequestType
impl Send for RequestType
impl Sync for RequestType
impl Unpin for RequestType
impl UnsafeUnpin for RequestType
impl UnwindSafe for RequestType
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