[−][src]Struct rustc_version::VersionMeta
Rustc version plus metada like git short hash and build date.
Fields
semver: Version
Version of the compiler
commit_hash: Option<String>
Git short hash of the build of the compiler
commit_date: Option<String>
Commit date of the compiler
build_date: Option<String>
Build date of the compiler; this was removed between Rust 1.0.0 and 1.1.0.
channel: Channel
Release channel of the compiler
host: String
Host target triple of the compiler
short_version_string: String
Short version string of the compiler
Methods
impl VersionMeta
[src]
pub fn for_command(cmd: Command) -> Result<VersionMeta>
[src]
Returns the version metadata for cmd
, which should be a rustc
command.
Trait Implementations
impl Eq for VersionMeta
[src]
impl Clone for VersionMeta
[src]
fn clone(&self) -> VersionMeta
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialOrd<VersionMeta> for VersionMeta
[src]
fn partial_cmp(&self, other: &VersionMeta) -> Option<Ordering>
[src]
fn lt(&self, other: &VersionMeta) -> bool
[src]
fn le(&self, other: &VersionMeta) -> bool
[src]
fn gt(&self, other: &VersionMeta) -> bool
[src]
fn ge(&self, other: &VersionMeta) -> bool
[src]
impl PartialEq<VersionMeta> for VersionMeta
[src]
fn eq(&self, other: &VersionMeta) -> bool
[src]
fn ne(&self, other: &VersionMeta) -> bool
[src]
impl Ord for VersionMeta
[src]
fn cmp(&self, other: &VersionMeta) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self
[src]
clamp
)Restrict a value to a certain interval. Read more
impl Hash for VersionMeta
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Debug for VersionMeta
[src]
Auto Trait Implementations
impl Unpin for VersionMeta
impl Sync for VersionMeta
impl Send for VersionMeta
impl UnwindSafe for VersionMeta
impl RefUnwindSafe for VersionMeta
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,