[][src]Struct vf_rs::vf::RecipeProcess

pub struct RecipeProcess<PROCESSSPECIFICATION> { /* fields omitted */ }

Specifies a process in a recipe for use in planning from recipe.

ID: https://w3id.org/valueflows#RecipeProcess

Implementations

impl<PROCESSSPECIFICATION> RecipeProcess<PROCESSSPECIFICATION>[src]

pub fn has_duration(&self) -> &Option<Duration>[src]

pub fn name(&self) -> &String[src]

An informal or formal textual identifier for an object. Does not imply uniqueness.

pub fn note(&self) -> &Option<String>[src]

pub fn process_classified_as(&self) -> &Vec<Url>[src]

References a concept in a common taxonomy or other classification scheme for purposes of categorization or grouping.

pub fn process_conforms_to(&self) -> &PROCESSSPECIFICATION[src]

The standard specification or definition of a process.

impl<PROCESSSPECIFICATION> RecipeProcess<PROCESSSPECIFICATION>[src]

pub fn set_has_duration(&mut self, val: Option<Duration>) -> &mut Self[src]

pub fn set_name(&mut self, val: String) -> &mut Self[src]

An informal or formal textual identifier for an object. Does not imply uniqueness.

pub fn set_note(&mut self, val: Option<String>) -> &mut Self[src]

pub fn set_process_classified_as(&mut self, val: Vec<Url>) -> &mut Self[src]

References a concept in a common taxonomy or other classification scheme for purposes of categorization or grouping.

pub fn set_process_conforms_to(
    &mut self,
    val: PROCESSSPECIFICATION
) -> &mut Self
[src]

The standard specification or definition of a process.

impl<PROCESSSPECIFICATION> RecipeProcess<PROCESSSPECIFICATION>[src]

pub fn has_duration_mut(&mut self) -> &mut Option<Duration>[src]

pub fn name_mut(&mut self) -> &mut String[src]

An informal or formal textual identifier for an object. Does not imply uniqueness.

pub fn note_mut(&mut self) -> &mut Option<String>[src]

pub fn process_classified_as_mut(&mut self) -> &mut Vec<Url>[src]

References a concept in a common taxonomy or other classification scheme for purposes of categorization or grouping.

pub fn process_conforms_to_mut(&mut self) -> &mut PROCESSSPECIFICATION[src]

The standard specification or definition of a process.

impl<PROCESSSPECIFICATION> RecipeProcess<PROCESSSPECIFICATION>[src]

pub fn builder() -> RecipeProcessBuilder<PROCESSSPECIFICATION>[src]

Create an empty builder object for RecipeProcess

pub fn into_builder(self) -> RecipeProcessBuilder<PROCESSSPECIFICATION>[src]

Turns RecipeProcess into RecipeProcessBuilder

Trait Implementations

impl<PROCESSSPECIFICATION: Clone> Clone for RecipeProcess<PROCESSSPECIFICATION>[src]

impl<PROCESSSPECIFICATION: Debug> Debug for RecipeProcess<PROCESSSPECIFICATION>[src]

impl<'de, PROCESSSPECIFICATION> Deserialize<'de> for RecipeProcess<PROCESSSPECIFICATION> where
    PROCESSSPECIFICATION: Deserialize<'de>, 
[src]

impl<PROCESSSPECIFICATION: PartialEq> PartialEq<RecipeProcess<PROCESSSPECIFICATION>> for RecipeProcess<PROCESSSPECIFICATION>[src]

impl<PROCESSSPECIFICATION> Serialize for RecipeProcess<PROCESSSPECIFICATION> where
    PROCESSSPECIFICATION: Serialize
[src]

impl<PROCESSSPECIFICATION> StructuralPartialEq for RecipeProcess<PROCESSSPECIFICATION>[src]

Auto Trait Implementations

impl<PROCESSSPECIFICATION> RefUnwindSafe for RecipeProcess<PROCESSSPECIFICATION> where
    PROCESSSPECIFICATION: RefUnwindSafe

impl<PROCESSSPECIFICATION> Send for RecipeProcess<PROCESSSPECIFICATION> where
    PROCESSSPECIFICATION: Send

impl<PROCESSSPECIFICATION> Sync for RecipeProcess<PROCESSSPECIFICATION> where
    PROCESSSPECIFICATION: Sync

impl<PROCESSSPECIFICATION> Unpin for RecipeProcess<PROCESSSPECIFICATION> where
    PROCESSSPECIFICATION: Unpin

impl<PROCESSSPECIFICATION> UnwindSafe for RecipeProcess<PROCESSSPECIFICATION> where
    PROCESSSPECIFICATION: UnwindSafe

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> 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.