pub struct TradingCalendarResponse {
pub trading_calendar: Vec<TradingCalendarItem>,
}Expand description
Trading Calendar response.
See: API Reference
Fields§
§trading_calendar: Vec<TradingCalendarItem>List of trading calendar data
Trait Implementations§
Source§impl Clone for TradingCalendarResponse
impl Clone for TradingCalendarResponse
Source§fn clone(&self) -> TradingCalendarResponse
fn clone(&self) -> TradingCalendarResponse
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 TradingCalendarResponse
impl Debug for TradingCalendarResponse
Source§impl<'de> Deserialize<'de> for TradingCalendarResponse
impl<'de> Deserialize<'de> for TradingCalendarResponse
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 JQuantsBuilder<TradingCalendarResponse> for TradingCalendarBuilder
impl JQuantsBuilder<TradingCalendarResponse> for TradingCalendarBuilder
Source§async fn send(self) -> Result<TradingCalendarResponse, JQuantsError>
async fn send(self) -> Result<TradingCalendarResponse, JQuantsError>
Send the request.
Source§async fn send_ref(&self) -> Result<TradingCalendarResponse, JQuantsError>
async fn send_ref(&self) -> Result<TradingCalendarResponse, JQuantsError>
Send the request without consuming ownership.
Use only when reusing the builder.
Source§impl PartialEq for TradingCalendarResponse
impl PartialEq for TradingCalendarResponse
impl StructuralPartialEq for TradingCalendarResponse
Auto Trait Implementations§
impl Freeze for TradingCalendarResponse
impl RefUnwindSafe for TradingCalendarResponse
impl Send for TradingCalendarResponse
impl Sync for TradingCalendarResponse
impl Unpin for TradingCalendarResponse
impl UnwindSafe for TradingCalendarResponse
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