pub struct ForexCurrenciesPreviousCloseResponse {
pub ticker: String,
pub query_count: u32,
pub results_count: u32,
pub adjusted: bool,
pub results: Vec<ForexEquitiesAggregates>,
pub status: String,
pub request_id: String,
pub count: u32,
}
Fields§
§ticker: String
§query_count: u32
§results_count: u32
§adjusted: bool
§results: Vec<ForexEquitiesAggregates>
§status: String
§request_id: String
§count: u32
Trait Implementations§
Source§impl Clone for ForexCurrenciesPreviousCloseResponse
impl Clone for ForexCurrenciesPreviousCloseResponse
Source§fn clone(&self) -> ForexCurrenciesPreviousCloseResponse
fn clone(&self) -> ForexCurrenciesPreviousCloseResponse
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<'de> Deserialize<'de> for ForexCurrenciesPreviousCloseResponse
impl<'de> Deserialize<'de> for ForexCurrenciesPreviousCloseResponse
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
Auto Trait Implementations§
impl Freeze for ForexCurrenciesPreviousCloseResponse
impl RefUnwindSafe for ForexCurrenciesPreviousCloseResponse
impl Send for ForexCurrenciesPreviousCloseResponse
impl Sync for ForexCurrenciesPreviousCloseResponse
impl Unpin for ForexCurrenciesPreviousCloseResponse
impl UnwindSafe for ForexCurrenciesPreviousCloseResponse
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