pub struct CargoVersion {
pub num: String,
pub yanked: bool,
pub features: HashMap<String, Vec<String>>,
}Expand description
Version information for a crate from crates.io.
Retrieved from the sparse index at https://index.crates.io/{cr}/{at}/{crate}.
Contains version number, yanked status, and available feature flags.
§Examples
use deps_cargo::types::CargoVersion;
use std::collections::HashMap;
let version = CargoVersion {
num: "1.0.214".into(),
yanked: false,
features: {
let mut f = HashMap::new();
f.insert("derive".into(), vec!["serde_derive".into()]);
f
},
};
assert!(!version.yanked);
assert!(version.features.contains_key("derive"));Fields§
§num: String§yanked: bool§features: HashMap<String, Vec<String>>Trait Implementations§
Source§impl Clone for CargoVersion
impl Clone for CargoVersion
Source§fn clone(&self) -> CargoVersion
fn clone(&self) -> CargoVersion
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 CargoVersion
impl Debug for CargoVersion
Source§impl Version for CargoVersion
impl Version for CargoVersion
Source§impl VersionInfo for CargoVersion
impl VersionInfo for CargoVersion
Auto Trait Implementations§
impl Freeze for CargoVersion
impl RefUnwindSafe for CargoVersion
impl Send for CargoVersion
impl Sync for CargoVersion
impl Unpin for CargoVersion
impl UnwindSafe for CargoVersion
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more