pub struct PlatformDownload {
pub url: String,
pub sha256: String,
}Expand description
Download info for a specific platform.
Fields§
§url: StringDownload URL for the tarball.
sha256: StringSHA-256 hash of the tarball for integrity verification.
Trait Implementations§
Source§impl Clone for PlatformDownload
impl Clone for PlatformDownload
Source§fn clone(&self) -> PlatformDownload
fn clone(&self) -> PlatformDownload
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 PlatformDownload
impl Debug for PlatformDownload
Source§impl<'de> Deserialize<'de> for PlatformDownload
impl<'de> Deserialize<'de> for PlatformDownload
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 PlatformDownload
impl RefUnwindSafe for PlatformDownload
impl Send for PlatformDownload
impl Sync for PlatformDownload
impl Unpin for PlatformDownload
impl UnsafeUnpin for PlatformDownload
impl UnwindSafe for PlatformDownload
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