pub struct Delivery {
pub arrival_time: DateTime<Utc>,
pub cases: i64,
pub date_completed: Option<DateTime<Utc>>,
pub deliverer: String,
pub id: Option<i64>,
pub job_count: Option<String>,
pub ratings: Option<String>,
pub store_location: SimpleStore,
}
Fields§
§arrival_time: DateTime<Utc>
§cases: i64
§date_completed: Option<DateTime<Utc>>
§deliverer: String
§id: Option<i64>
§job_count: Option<String>
§ratings: Option<String>
§store_location: SimpleStore
Trait 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
Auto Trait Implementations§
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