pub struct MinecraftVersionJson {
pub id: String,
pub version_type: String,
pub assets: Option<String>,
pub asset_index: Option<AssetIndexRef>,
pub downloads: Option<VersionDownloads>,
pub libraries: Vec<Library>,
pub main_class: Option<String>,
pub java_version: Option<JavaVersionInfo>,
pub minecraft_arguments: Option<String>,
pub arguments: Option<Arguments>,
pub has_natives: bool,
}Fields§
§id: String§version_type: String§assets: Option<String>§asset_index: Option<AssetIndexRef>§downloads: Option<VersionDownloads>§libraries: Vec<Library>§main_class: Option<String>§java_version: Option<JavaVersionInfo>§minecraft_arguments: Option<String>§arguments: Option<Arguments>§has_natives: boolTrait Implementations§
Source§impl Clone for MinecraftVersionJson
impl Clone for MinecraftVersionJson
Source§fn clone(&self) -> MinecraftVersionJson
fn clone(&self) -> MinecraftVersionJson
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 Debug for MinecraftVersionJson
impl Debug for MinecraftVersionJson
Source§impl<'de> Deserialize<'de> for MinecraftVersionJson
impl<'de> Deserialize<'de> for MinecraftVersionJson
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 MinecraftVersionJson
impl RefUnwindSafe for MinecraftVersionJson
impl Send for MinecraftVersionJson
impl Sync for MinecraftVersionJson
impl Unpin for MinecraftVersionJson
impl UnsafeUnpin for MinecraftVersionJson
impl UnwindSafe for MinecraftVersionJson
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