pub struct AuctionsSingleRequest {
pub symbol: String,
pub start: Option<String>,
pub end: Option<String>,
pub limit: Option<u32>,
pub asof: Option<String>,
pub feed: Option<AuctionFeed>,
pub currency: Option<Currency>,
pub page_token: Option<String>,
pub sort: Option<Sort>,
}Fields§
§symbol: String§start: Option<String>§end: Option<String>§limit: Option<u32>§asof: Option<String>§feed: Option<AuctionFeed>§currency: Option<Currency>§page_token: Option<String>§sort: Option<Sort>Trait Implementations§
Source§impl Clone for AuctionsSingleRequest
impl Clone for AuctionsSingleRequest
Source§fn clone(&self) -> AuctionsSingleRequest
fn clone(&self) -> AuctionsSingleRequest
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 AuctionsSingleRequest
impl Debug for AuctionsSingleRequest
Source§impl Default for AuctionsSingleRequest
impl Default for AuctionsSingleRequest
Source§fn default() -> AuctionsSingleRequest
fn default() -> AuctionsSingleRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AuctionsSingleRequest
impl RefUnwindSafe for AuctionsSingleRequest
impl Send for AuctionsSingleRequest
impl Sync for AuctionsSingleRequest
impl Unpin for AuctionsSingleRequest
impl UnwindSafe for AuctionsSingleRequest
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