pub struct PrepDetails {
pub prep_instruction: PrepInstruction,
pub prep_owner: PrepOwner,
}Expand description
PrepDetails : Preparation instructions and who is responsible for the preparation.
Fields
prep_instruction: PrepInstructionprep_owner: PrepOwnerImplementations
sourceimpl PrepDetails
impl PrepDetails
sourcepub fn new(
prep_instruction: PrepInstruction,
prep_owner: PrepOwner
) -> PrepDetails
pub fn new(
prep_instruction: PrepInstruction,
prep_owner: PrepOwner
) -> PrepDetails
Preparation instructions and who is responsible for the preparation.
Trait Implementations
sourceimpl Clone for PrepDetails
impl Clone for PrepDetails
sourcefn clone(&self) -> PrepDetails
fn clone(&self) -> PrepDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for PrepDetails
impl Debug for PrepDetails
sourceimpl Default for PrepDetails
impl Default for PrepDetails
sourcefn default() -> PrepDetails
fn default() -> PrepDetails
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for PrepDetails
impl<'de> Deserialize<'de> for PrepDetails
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<PrepDetails> for PrepDetails
impl PartialEq<PrepDetails> for PrepDetails
sourcefn eq(&self, other: &PrepDetails) -> bool
fn eq(&self, other: &PrepDetails) -> bool
sourceimpl Serialize for PrepDetails
impl Serialize for PrepDetails
impl StructuralPartialEq for PrepDetails
Auto Trait Implementations
impl RefUnwindSafe for PrepDetails
impl Send for PrepDetails
impl Sync for PrepDetails
impl Unpin for PrepDetails
impl UnwindSafe for PrepDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more