pub struct Summary { /* private fields */ }
Expand description
Subset of a Manifest
. Contains only the most important information about
a package.
Summaries are cloned, and should not be mutated after creation
Implementations
sourceimpl Summary
impl Summary
pub fn new(
config: &Config,
pkg_id: PackageId,
dependencies: Vec<Dependency>,
features: &BTreeMap<InternedString, Vec<InternedString>>,
links: Option<impl Into<InternedString>>
) -> CargoResult<Summary>
pub fn package_id(&self) -> PackageId
pub fn name(&self) -> InternedString
pub fn version(&self) -> &Version
pub fn source_id(&self) -> SourceId
pub fn dependencies(&self) -> &[Dependency]
pub fn features(&self) -> &FeatureMap
sourcepub fn unstable_gate(
&self,
namespaced_features: bool,
weak_dep_features: bool
) -> CargoResult<()>
pub fn unstable_gate(
&self,
namespaced_features: bool,
weak_dep_features: bool
) -> CargoResult<()>
Returns an error if this Summary is using an unstable feature that is not enabled.
pub fn checksum(&self) -> Option<&str>
pub fn links(&self) -> Option<InternedString>
pub fn override_id(self, id: PackageId) -> Summary
pub fn set_checksum(&mut self, cksum: String)
pub fn map_dependencies<F>(self, f: F) -> Summary where
F: FnMut(Dependency) -> Dependency,
pub fn map_source(self, to_replace: SourceId, replace_with: SourceId) -> Summary
Trait Implementations
impl Eq for Summary
Auto Trait Implementations
impl RefUnwindSafe for Summary
impl !Send for Summary
impl !Sync for Summary
impl Unpin for Summary
impl UnwindSafe for Summary
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> 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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more