pub struct SymbolSearchResponse {
pub remaining: u64,
pub symbols: Vec<Symbol>,
}Expand description
Response from the TradingView symbol search endpoint.
remaining counts how many results are left beyond the returned page.
symbols is the current page of matches.
Fields§
§remaining: u64§symbols: Vec<Symbol>Trait Implementations§
Source§impl Clone for SymbolSearchResponse
impl Clone for SymbolSearchResponse
Source§impl Debug for SymbolSearchResponse
impl Debug for SymbolSearchResponse
Source§impl Default for SymbolSearchResponse
impl Default for SymbolSearchResponse
Source§impl<'de> Deserialize<'de> for SymbolSearchResponse
impl<'de> Deserialize<'de> for SymbolSearchResponse
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 SymbolSearchResponse
impl RefUnwindSafe for SymbolSearchResponse
impl Send for SymbolSearchResponse
impl Sync for SymbolSearchResponse
impl Unpin for SymbolSearchResponse
impl UnsafeUnpin for SymbolSearchResponse
impl UnwindSafe for SymbolSearchResponse
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