pub struct GetStockBySymbolRequestQuery {
pub symbols: String,
}Fields§
§symbols: StringComma-separated list of stock symbols. Symbols must contain only capitalized letters.
- Example:
"AAPL,IBKR".to_string()
Trait Implementations§
Source§impl Clone for GetStockBySymbolRequestQuery
impl Clone for GetStockBySymbolRequestQuery
Source§fn clone(&self) -> GetStockBySymbolRequestQuery
fn clone(&self) -> GetStockBySymbolRequestQuery
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 GetStockBySymbolRequestQuery
impl Debug for GetStockBySymbolRequestQuery
Source§impl PartialEq for GetStockBySymbolRequestQuery
impl PartialEq for GetStockBySymbolRequestQuery
Source§fn eq(&self, other: &GetStockBySymbolRequestQuery) -> bool
fn eq(&self, other: &GetStockBySymbolRequestQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'v_a> ValidateArgs<'v_a> for GetStockBySymbolRequestQuery
impl<'v_a> ValidateArgs<'v_a> for GetStockBySymbolRequestQuery
impl StructuralPartialEq for GetStockBySymbolRequestQuery
Auto Trait Implementations§
impl Freeze for GetStockBySymbolRequestQuery
impl RefUnwindSafe for GetStockBySymbolRequestQuery
impl Send for GetStockBySymbolRequestQuery
impl Sync for GetStockBySymbolRequestQuery
impl Unpin for GetStockBySymbolRequestQuery
impl UnsafeUnpin for GetStockBySymbolRequestQuery
impl UnwindSafe for GetStockBySymbolRequestQuery
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