pub struct VersionDownloads {
pub client: File,
pub client_mappings: Option<File>,
pub server: Option<File>,
pub server_mappings: Option<File>,
}
Expand description
Download information of the client/server.
Fields§
§client: File
Client file
client_mappings: Option<File>
Client mappings
server: Option<File>
Server file
server_mappings: Option<File>
Server mappings
Trait Implementations§
Source§impl Clone for VersionDownloads
impl Clone for VersionDownloads
Source§fn clone(&self) -> VersionDownloads
fn clone(&self) -> VersionDownloads
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VersionDownloads
impl Debug for VersionDownloads
Source§impl<'de> Deserialize<'de> for VersionDownloads
impl<'de> Deserialize<'de> for VersionDownloads
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 VersionDownloads
impl RefUnwindSafe for VersionDownloads
impl Send for VersionDownloads
impl Sync for VersionDownloads
impl Unpin for VersionDownloads
impl UnwindSafe for VersionDownloads
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