pub struct GetPluginDownloadStatsResponseVersionsItem {
pub platforms: Map<String, Value>,
pub total: f64,
pub version: String,
}Expand description
GetPluginDownloadStatsResponseVersionsItem
JSON schema
{
"type": "object",
"required": [
"platforms",
"total",
"version"
],
"properties": {
"platforms": {
"type": "object"
},
"total": {
"type": "number"
},
"version": {
"type": "string"
}
}
}Fields§
§platforms: Map<String, Value>§total: f64§version: StringImplementations§
Trait Implementations§
Source§impl Clone for GetPluginDownloadStatsResponseVersionsItem
impl Clone for GetPluginDownloadStatsResponseVersionsItem
Source§fn clone(&self) -> GetPluginDownloadStatsResponseVersionsItem
fn clone(&self) -> GetPluginDownloadStatsResponseVersionsItem
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 moreSource§impl<'de> Deserialize<'de> for GetPluginDownloadStatsResponseVersionsItem
impl<'de> Deserialize<'de> for GetPluginDownloadStatsResponseVersionsItem
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 From<&GetPluginDownloadStatsResponseVersionsItem> for GetPluginDownloadStatsResponseVersionsItem
impl From<&GetPluginDownloadStatsResponseVersionsItem> for GetPluginDownloadStatsResponseVersionsItem
Source§fn from(value: &GetPluginDownloadStatsResponseVersionsItem) -> Self
fn from(value: &GetPluginDownloadStatsResponseVersionsItem) -> Self
Converts to this type from the input type.
Source§impl From<GetPluginDownloadStatsResponseVersionsItem> for GetPluginDownloadStatsResponseVersionsItem
impl From<GetPluginDownloadStatsResponseVersionsItem> for GetPluginDownloadStatsResponseVersionsItem
Source§fn from(value: GetPluginDownloadStatsResponseVersionsItem) -> Self
fn from(value: GetPluginDownloadStatsResponseVersionsItem) -> Self
Converts to this type from the input type.
Source§impl TryFrom<GetPluginDownloadStatsResponseVersionsItem> for GetPluginDownloadStatsResponseVersionsItem
impl TryFrom<GetPluginDownloadStatsResponseVersionsItem> for GetPluginDownloadStatsResponseVersionsItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: GetPluginDownloadStatsResponseVersionsItem,
) -> Result<Self, ConversionError>
fn try_from( value: GetPluginDownloadStatsResponseVersionsItem, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GetPluginDownloadStatsResponseVersionsItem
impl RefUnwindSafe for GetPluginDownloadStatsResponseVersionsItem
impl Send for GetPluginDownloadStatsResponseVersionsItem
impl Sync for GetPluginDownloadStatsResponseVersionsItem
impl Unpin for GetPluginDownloadStatsResponseVersionsItem
impl UnsafeUnpin for GetPluginDownloadStatsResponseVersionsItem
impl UnwindSafe for GetPluginDownloadStatsResponseVersionsItem
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