[][src]Struct chef::Recipe

pub struct Recipe {
    pub skeleton: Skeleton,
}

Fields

skeleton: Skeleton

Implementations

impl Recipe[src]

pub fn prepare(base_path: PathBuf) -> Result<Self, Error>[src]

pub fn cook(
    &self,
    profile: OptimisationProfile,
    target: Option<String>
) -> Result<(), Error>
[src]

Trait Implementations

impl Clone for Recipe[src]

impl Debug for Recipe[src]

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

impl Eq for Recipe[src]

impl PartialEq<Recipe> for Recipe[src]

impl Serialize for Recipe[src]

impl StructuralEq for Recipe[src]

impl StructuralPartialEq for Recipe[src]

Auto Trait Implementations

impl RefUnwindSafe for Recipe

impl Send for Recipe

impl Sync for Recipe

impl Unpin for Recipe

impl UnwindSafe for Recipe

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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.