[][src]Struct criner_waste_report::CargoConfig

pub struct CargoConfig {
    pub package: Option<PackageSection>,
    pub lib: Option<SectionWithPath>,
    pub bin: Option<Vec<SectionWithPath>>,
}

Fields

package: Option<PackageSection>lib: Option<SectionWithPath>bin: Option<Vec<SectionWithPath>>

Implementations

impl CargoConfig[src]

pub fn actual_or_expected_build_script_path(&self) -> &str[src]

pub fn build_script_path(&self) -> Option<&str>[src]

pub fn lib_path(&self) -> &str[src]

pub fn bin_paths(&self) -> Vec<&str>[src]

Trait Implementations

impl Default for CargoConfig[src]

impl<'de> Deserialize<'de> for CargoConfig[src]

impl<'_> From<&'_ [u8]> for CargoConfig[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.