pub enum MapsGetResponse {
ListOfTheIdsOfAllExistingMaps(Vec<String>),
NoMapsInDatabase,
}
Variants§
ListOfTheIdsOfAllExistingMaps(Vec<String>)
List of the ids of all existing maps.
NoMapsInDatabase
No Maps in Database.
Trait Implementations§
Source§impl Debug for MapsGetResponse
impl Debug for MapsGetResponse
Source§impl<'de> Deserialize<'de> for MapsGetResponse
impl<'de> Deserialize<'de> for MapsGetResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MapsGetResponse
impl PartialEq for MapsGetResponse
Source§impl Serialize for MapsGetResponse
impl Serialize for MapsGetResponse
impl StructuralPartialEq for MapsGetResponse
Auto Trait Implementations§
impl Freeze for MapsGetResponse
impl RefUnwindSafe for MapsGetResponse
impl Send for MapsGetResponse
impl Sync for MapsGetResponse
impl Unpin for MapsGetResponse
impl UnwindSafe for MapsGetResponse
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