pub struct CustomerStateCounts {
pub planned: usize,
pub balked: usize,
pub waiting_till: usize,
pub at_till: usize,
pub waiting_kitchen: usize,
pub preparing_food: usize,
pub collecting_food: usize,
pub served: usize,
pub gave_up_queue: usize,
pub abandoned: usize,
}Fields§
§planned: usize§balked: usize§waiting_till: usize§at_till: usize§waiting_kitchen: usize§preparing_food: usize§collecting_food: usize§served: usize§gave_up_queue: usize§abandoned: usizeTrait Implementations§
Source§impl Clone for CustomerStateCounts
impl Clone for CustomerStateCounts
Source§fn clone(&self) -> CustomerStateCounts
fn clone(&self) -> CustomerStateCounts
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 CustomerStateCounts
impl Debug for CustomerStateCounts
Source§impl Default for CustomerStateCounts
impl Default for CustomerStateCounts
Source§fn default() -> CustomerStateCounts
fn default() -> CustomerStateCounts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CustomerStateCounts
impl RefUnwindSafe for CustomerStateCounts
impl Send for CustomerStateCounts
impl Sync for CustomerStateCounts
impl Unpin for CustomerStateCounts
impl UnwindSafe for CustomerStateCounts
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more