pub struct LibraryDownloads {
pub artifact: Artifact,
}Expand description
This struct represents the following JSON:
"artifact": {
"path": "org/lwjgl/lwjgl-jemalloc/3.3.3/lwjgl-jemalloc-3.3.3-natives-macos.jar",
"sha1": "2906637657a57579847238c9c72d2c4bde7083f8",
"size": 153131,
"url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.3/lwjgl-jemalloc-3.3.3-natives-macos.jar"
}This is the downloads field of Library struct
Fields§
§artifact: ArtifactTrait Implementations§
Auto Trait Implementations§
impl Freeze for LibraryDownloads
impl RefUnwindSafe for LibraryDownloads
impl Send for LibraryDownloads
impl Sync for LibraryDownloads
impl Unpin for LibraryDownloads
impl UnwindSafe for LibraryDownloads
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more