pub struct FinancialStatementsBuilder { /* private fields */ }
Expand description
Builder for Financial Statements Data API.
Implementations§
Trait Implementations§
Source§impl Clone for FinancialStatementsBuilder
impl Clone for FinancialStatementsBuilder
Source§fn clone(&self) -> FinancialStatementsBuilder
fn clone(&self) -> FinancialStatementsBuilder
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<FinancialStatementsResponse> for FinancialStatementsBuilder
impl JQuantsBuilder<FinancialStatementsResponse> for FinancialStatementsBuilder
Source§async fn send(self) -> Result<FinancialStatementsResponse, JQuantsError>
async fn send(self) -> Result<FinancialStatementsResponse, JQuantsError>
Send the request.
Source§async fn send_ref(&self) -> Result<FinancialStatementsResponse, JQuantsError>
async fn send_ref(&self) -> Result<FinancialStatementsResponse, JQuantsError>
Send the request without consuming ownership.
Use only when reusing the builder.
Source§impl Paginatable<FinancialStatementsResponse> for FinancialStatementsBuilder
impl Paginatable<FinancialStatementsResponse> for FinancialStatementsBuilder
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 FinancialStatementsBuilder
impl !RefUnwindSafe for FinancialStatementsBuilder
impl Send for FinancialStatementsBuilder
impl Sync for FinancialStatementsBuilder
impl Unpin for FinancialStatementsBuilder
impl !UnwindSafe for FinancialStatementsBuilder
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