Struct rust_releases_core::Release 
source · pub struct Release { /* private fields */ }Expand description
A Rust release with an associated version.
A release may be associated with a channel (stable, beta, nightly).
*Breaking change for > 0.15: After the release of rust-releases 0.15, a breaking change will
be made to add support for beta and nightly versions.  
Implementations§
Trait Implementations§
source§impl FromIterator<Release> for ReleaseIndex
 
impl FromIterator<Release> for ReleaseIndex
source§fn from_iter<T: IntoIterator<Item = Release>>(iter: T) -> Self
 
fn from_iter<T: IntoIterator<Item = Release>>(iter: T) -> Self
Create a new ReleaseIndex from a given iterable.
NB: Releases should already be sorted from the most recent to the least recent release.
source§impl Ord for Release
 
impl Ord for Release
source§impl PartialEq<Release> for Release
 
impl PartialEq<Release> for Release
source§impl PartialOrd<Release> for Release
 
impl PartialOrd<Release> for Release
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read more