pub struct ModVersion {
pub friendly_version: Option<String>,
pub game_version: Option<String>,
pub id: Option<i32>,
pub created: Option<String>,
pub download_path: Option<String>,
pub changelog: Option<String>,
pub downloads: Option<i32>,
}Fields§
§friendly_version: Option<String>§game_version: Option<String>§id: Option<i32>§created: Option<String>§download_path: Option<String>§changelog: Option<String>§downloads: Option<i32>Implementations§
Source§impl ModVersion
impl ModVersion
Trait Implementations§
Source§impl Clone for ModVersion
impl Clone for ModVersion
Source§fn clone(&self) -> ModVersion
fn clone(&self) -> ModVersion
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 ModVersion
impl Debug for ModVersion
Source§impl Default for ModVersion
impl Default for ModVersion
Source§impl<'de> Deserialize<'de> for ModVersion
impl<'de> Deserialize<'de> for ModVersion
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 ModVersion
impl RefUnwindSafe for ModVersion
impl Send for ModVersion
impl Sync for ModVersion
impl Unpin for ModVersion
impl UnwindSafe for ModVersion
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