Struct cargo::core::profiles::Profiles[][src]

pub struct Profiles { /* fields omitted */ }

Collection of all user profiles.

Implementations

impl Profiles[src]

pub fn new(
    profiles: Option<&TomlProfiles>,
    config: &Config,
    features: &Features,
    warnings: &mut Vec<String>
) -> CargoResult<Profiles>
[src]

pub fn get_profile(
    &self,
    pkg_id: PackageId,
    is_member: bool,
    unit_for: UnitFor,
    mode: CompileMode,
    profile_kind: ProfileKind
) -> Profile
[src]

Retrieves the profile for a target. is_member is whether or not this package is a member of the workspace.

pub fn get_profile_run_custom_build(
    &self,
    for_unit_profile: &Profile
) -> Profile
[src]

The profile for running a build.rs script is only used for setting a few environment variables. To ensure proper de-duplication of the running Unit, this uses a stripped-down profile (so that unrelated profile flags don’t cause build.rs to needlessly run multiple times).

pub fn base_profile(&self, profile_kind: &ProfileKind) -> CargoResult<Profile>[src]

This returns the base profile. This is currently used for the [Finished] line. It is not entirely accurate, since it doesn’t select for the package that was actually built.

pub fn get_dir_name(&self, profile_kind: &ProfileKind) -> String[src]

pub fn validate_packages(
    &self,
    shell: &mut Shell,
    resolve: &Resolve
) -> CargoResult<()>
[src]

Used to check for overrides for non-existing packages.

Trait Implementations

impl Clone for Profiles[src]

impl Debug for Profiles[src]

Auto Trait Implementations

impl RefUnwindSafe for Profiles

impl Send for Profiles

impl Sync for Profiles

impl Unpin for Profiles

impl UnwindSafe for Profiles

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]