Expand description
Defines the struct that the JSON-formatted release list can be deserialized into.
{ “builds”: [ { “version”: “0.8.7”, “sha256”: “0x0xcc5c663d1fe17d4eb4aca09253787ac86b8785235fca71d9200569e662677990” } ] “releases”: { “0.8.7”: “solc-macosx-amd64-v0.8.7+commit.e28d00a7”, “0.8.6”: “solc-macosx-amd64-v0.8.6+commit.11564f7e”, … } }
Both the key and value are deserialized into semver::Version.
Fields
builds: Vec<BuildInfo>
releases: HashMap<Version, String>
Implementations
sourceimpl Releases
impl Releases
sourcepub fn get_checksum(&self, v: &Version) -> Option<Vec<u8>>
pub fn get_checksum(&self, v: &Version) -> Option<Vec<u8>>
Get the checksum of a solc version’s binary if it exists.
sourcepub fn get_artifact(&self, version: &Version) -> Option<&String>
pub fn get_artifact(&self, version: &Version) -> Option<&String>
Returns the artifact of the version if any
sourcepub fn into_versions(self) -> Vec<Version>
pub fn into_versions(self) -> Vec<Version>
Returns a sorted list of all versions
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Releases
impl<'de> Deserialize<'de> for Releases
sourcefn 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 RefUnwindSafe for Releases
impl Send for Releases
impl Sync for Releases
impl Unpin for Releases
impl UnwindSafe for Releases
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more