pub struct AllOrderReq {
pub symbol: String,
pub paginator: Option<Paginator>,
}Expand description
This struct represents all order
Fields§
§symbol: String§paginator: Option<Paginator>Trait Implementations§
Source§impl Clone for AllOrderReq
impl Clone for AllOrderReq
Source§fn clone(&self) -> AllOrderReq
fn clone(&self) -> AllOrderReq
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 AllOrderReq
impl Debug for AllOrderReq
Source§impl<'de> Deserialize<'de> for AllOrderReq
impl<'de> Deserialize<'de> for AllOrderReq
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
Source§impl Serialize for AllOrderReq
impl Serialize for AllOrderReq
Source§impl TryFrom<&GetOrderHistoryRequest> for AllOrderReq
impl TryFrom<&GetOrderHistoryRequest> for AllOrderReq
Source§type Error = OpenLimitsError
type Error = OpenLimitsError
The type returned in the event of a conversion error.
Source§fn try_from(req: &GetOrderHistoryRequest) -> Result<Self>
fn try_from(req: &GetOrderHistoryRequest) -> Result<Self>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AllOrderReq
impl RefUnwindSafe for AllOrderReq
impl Send for AllOrderReq
impl Sync for AllOrderReq
impl Unpin for AllOrderReq
impl UnsafeUnpin for AllOrderReq
impl UnwindSafe for AllOrderReq
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