pub struct Delivery {
pub task_id: String,
pub items: Vec<DispenserRequestItem>,
pub pickup_place_name: String,
pub pickup_dispenser: String,
pub pickup_behavior: Behavior,
pub dropoff_place_name: String,
pub dropoff_ingestor: String,
pub dropoff_behavior: Behavior,
}Fields§
§task_id: String§items: Vec<DispenserRequestItem>§pickup_place_name: String§pickup_dispenser: String§pickup_behavior: Behavior§dropoff_place_name: String§dropoff_ingestor: String§dropoff_behavior: BehaviorTrait Implementations§
Source§impl<'de> Deserialize<'de> for Delivery
impl<'de> Deserialize<'de> for Delivery
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
impl Message for Delivery
impl StructuralPartialEq for Delivery
Auto Trait Implementations§
impl Freeze for Delivery
impl RefUnwindSafe for Delivery
impl Send for Delivery
impl Sync for Delivery
impl Unpin for Delivery
impl UnwindSafe for Delivery
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