pub struct QueryOrderHistoryResponse {
pub total: Option<i32>,
pub offset: Option<i32>,
pub limit: Option<i32>,
pub orders: Option<Vec<QueryOrderHistoryResponseOrdersInner>>,
}Fields§
§total: Option<i32>§offset: Option<i32>§limit: Option<i32>§orders: Option<Vec<QueryOrderHistoryResponseOrdersInner>>Implementations§
Source§impl QueryOrderHistoryResponse
impl QueryOrderHistoryResponse
pub fn new() -> QueryOrderHistoryResponse
Trait Implementations§
Source§impl Clone for QueryOrderHistoryResponse
impl Clone for QueryOrderHistoryResponse
Source§fn clone(&self) -> QueryOrderHistoryResponse
fn clone(&self) -> QueryOrderHistoryResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QueryOrderHistoryResponse
impl Debug for QueryOrderHistoryResponse
Source§impl Default for QueryOrderHistoryResponse
impl Default for QueryOrderHistoryResponse
Source§fn default() -> QueryOrderHistoryResponse
fn default() -> QueryOrderHistoryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryOrderHistoryResponse
impl<'de> Deserialize<'de> for QueryOrderHistoryResponse
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 StructuralPartialEq for QueryOrderHistoryResponse
Auto Trait Implementations§
impl Freeze for QueryOrderHistoryResponse
impl RefUnwindSafe for QueryOrderHistoryResponse
impl Send for QueryOrderHistoryResponse
impl Sync for QueryOrderHistoryResponse
impl Unpin for QueryOrderHistoryResponse
impl UnsafeUnpin for QueryOrderHistoryResponse
impl UnwindSafe for QueryOrderHistoryResponse
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