pub struct Version {Show 13 fields
pub created_at: OffsetDateTime,
pub name: String,
pub visibility: Visibility,
pub description: String,
pub stats: VersionStats,
pub author: String,
pub review_state: ReviewState,
pub channel: Channel,
pub pinned_status: PinnedStatus,
pub downloads: ByPlatform<VersionDownloads>,
pub plugin_dependencies: ByPlatform<Vec<VersionPluginDependencies>>,
pub platform_dependencies: ByPlatform<Vec<String>>,
pub platform_dependencies_formatted: ByPlatform<Vec<String>>,
}Fields§
§created_at: OffsetDateTime§name: String§visibility: Visibility§description: String§stats: VersionStats§review_state: ReviewState§channel: Channel§pinned_status: PinnedStatus§downloads: ByPlatform<VersionDownloads>§plugin_dependencies: ByPlatform<Vec<VersionPluginDependencies>>§platform_dependencies: ByPlatform<Vec<String>>§platform_dependencies_formatted: ByPlatform<Vec<String>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Version
impl<'de> Deserialize<'de> for Version
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 Version
impl RefUnwindSafe for Version
impl Send for Version
impl Sync for Version
impl Unpin for Version
impl UnwindSafe for Version
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