pub struct BreakdownTradingDataBuilder { /* private fields */ }
Expand description
Builder for Breakdown Trading Data API.
Implementations§
Trait Implementations§
Source§impl Clone for BreakdownTradingDataBuilder
impl Clone for BreakdownTradingDataBuilder
Source§fn clone(&self) -> BreakdownTradingDataBuilder
fn clone(&self) -> BreakdownTradingDataBuilder
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 JQuantsBuilder<BreakdownTradingDataResponse> for BreakdownTradingDataBuilder
impl JQuantsBuilder<BreakdownTradingDataResponse> for BreakdownTradingDataBuilder
Source§async fn send(self) -> Result<BreakdownTradingDataResponse, JQuantsError>
async fn send(self) -> Result<BreakdownTradingDataResponse, JQuantsError>
Send the request.
Source§async fn send_ref(&self) -> Result<BreakdownTradingDataResponse, JQuantsError>
async fn send_ref(&self) -> Result<BreakdownTradingDataResponse, JQuantsError>
Send the request without consuming ownership.
Use only when reusing the builder.
Source§impl Paginatable<BreakdownTradingDataResponse> for BreakdownTradingDataBuilder
impl Paginatable<BreakdownTradingDataResponse> for BreakdownTradingDataBuilder
Source§fn pagination_key(self, pagination_key: impl Into<String>) -> Self
fn pagination_key(self, pagination_key: impl Into<String>) -> Self
Set the pagination key.
Source§fn fetch_pages_stream(self) -> impl Stream<Item = Result<R, JQuantsError>>
fn fetch_pages_stream(self) -> impl Stream<Item = Result<R, JQuantsError>>
Fetch the pages stream.
Source§fn fetch_all_and_merge(self) -> impl Future<Output = Result<R, JQuantsError>>
fn fetch_all_and_merge(self) -> impl Future<Output = Result<R, JQuantsError>>
Fetch all pages and merge them.
Auto Trait Implementations§
impl Freeze for BreakdownTradingDataBuilder
impl !RefUnwindSafe for BreakdownTradingDataBuilder
impl Send for BreakdownTradingDataBuilder
impl Sync for BreakdownTradingDataBuilder
impl Unpin for BreakdownTradingDataBuilder
impl !UnwindSafe for BreakdownTradingDataBuilder
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