pub struct ResolvedFile {
pub url: String,
pub hash: String,
pub markers: Option<String>,
pub python: Option<String>,
pub tags: Option<String>,
}Expand description
A resolved file with platform info
Fields§
§url: StringDownload URL
hash: StringHash
markers: Option<String>Platform markers
python: Option<String>Python version constraint
Wheel tags
Trait Implementations§
Source§impl Clone for ResolvedFile
impl Clone for ResolvedFile
Source§fn clone(&self) -> ResolvedFile
fn clone(&self) -> ResolvedFile
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 moreAuto Trait Implementations§
impl Freeze for ResolvedFile
impl RefUnwindSafe for ResolvedFile
impl Send for ResolvedFile
impl Sync for ResolvedFile
impl Unpin for ResolvedFile
impl UnwindSafe for ResolvedFile
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