pub struct GetRecurringOrdersRes {
pub order_status: OrderStatus,
pub page: i64,
pub total_pages: i64,
pub user: String,
pub timer: Option<Vec<TimeOrder>>,
pub price: Option<Vec<PriceOrder>>,
}Fields§
§order_status: OrderStatus§page: i64§total_pages: i64§user: String§timer: Option<Vec<TimeOrder>>§price: Option<Vec<PriceOrder>>Trait Implementations§
Source§impl Debug for GetRecurringOrdersRes
impl Debug for GetRecurringOrdersRes
Source§impl<'de> Deserialize<'de> for GetRecurringOrdersRes
impl<'de> Deserialize<'de> for GetRecurringOrdersRes
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 Freeze for GetRecurringOrdersRes
impl RefUnwindSafe for GetRecurringOrdersRes
impl Send for GetRecurringOrdersRes
impl Sync for GetRecurringOrdersRes
impl Unpin for GetRecurringOrdersRes
impl UnsafeUnpin for GetRecurringOrdersRes
impl UnwindSafe for GetRecurringOrdersRes
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