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: PrepInstruction§prep_owner: PrepOwnerImplementations§
Source§impl 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§
Source§impl Clone for PrepDetails
impl Clone for PrepDetails
Source§fn clone(&self) -> PrepDetails
fn clone(&self) -> PrepDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PrepDetails
impl Debug for PrepDetails
Source§impl Default for PrepDetails
impl Default for PrepDetails
Source§fn default() -> PrepDetails
fn default() -> PrepDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrepDetails
impl<'de> Deserialize<'de> for PrepDetails
Source§fn 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
Source§impl PartialEq for PrepDetails
impl PartialEq for PrepDetails
Source§impl Serialize for PrepDetails
impl Serialize for PrepDetails
impl StructuralPartialEq for PrepDetails
Auto Trait Implementations§
impl Freeze for PrepDetails
impl RefUnwindSafe for PrepDetails
impl Send for PrepDetails
impl Sync for PrepDetails
impl Unpin for PrepDetails
impl UnwindSafe for PrepDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more