pub enum MapLevelGetResponse {
BeatMap(Vec<MapDto>),
ThisMapDoesNotExist,
}
Variants§
Trait Implementations§
Source§impl Debug for MapLevelGetResponse
impl Debug for MapLevelGetResponse
Source§impl<'de> Deserialize<'de> for MapLevelGetResponse
impl<'de> Deserialize<'de> for MapLevelGetResponse
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 MapLevelGetResponse
impl PartialEq for MapLevelGetResponse
Source§impl Serialize for MapLevelGetResponse
impl Serialize for MapLevelGetResponse
impl StructuralPartialEq for MapLevelGetResponse
Auto Trait Implementations§
impl Freeze for MapLevelGetResponse
impl RefUnwindSafe for MapLevelGetResponse
impl Send for MapLevelGetResponse
impl Sync for MapLevelGetResponse
impl Unpin for MapLevelGetResponse
impl UnwindSafe for MapLevelGetResponse
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