pub enum GetUsersHeatmapError {
Status400(JsonErrorResponseNull),
Status401(JsonErrorResponseNull),
Status403(JsonErrorResponseNull),
Status404(JsonErrorResponseNull),
Status409(JsonErrorResponseNull),
Status429(JsonErrorResponseNull),
Status500(JsonErrorResponseNull),
UnknownValue(Value),
}Expand description
struct for typed errors of method get_users_heatmap
Variants§
Status400(JsonErrorResponseNull)
Status401(JsonErrorResponseNull)
Status403(JsonErrorResponseNull)
Status404(JsonErrorResponseNull)
Status409(JsonErrorResponseNull)
Status429(JsonErrorResponseNull)
Status500(JsonErrorResponseNull)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for GetUsersHeatmapError
impl Clone for GetUsersHeatmapError
Source§fn clone(&self) -> GetUsersHeatmapError
fn clone(&self) -> GetUsersHeatmapError
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 moreSource§impl Debug for GetUsersHeatmapError
impl Debug for GetUsersHeatmapError
Source§impl<'de> Deserialize<'de> for GetUsersHeatmapError
impl<'de> Deserialize<'de> for GetUsersHeatmapError
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
Auto Trait Implementations§
impl Freeze for GetUsersHeatmapError
impl RefUnwindSafe for GetUsersHeatmapError
impl Send for GetUsersHeatmapError
impl Sync for GetUsersHeatmapError
impl Unpin for GetUsersHeatmapError
impl UnwindSafe for GetUsersHeatmapError
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