pub struct GetAllWatchlistsRequestQuery {
pub sc: Option<String>,
}Fields§
§sc: Option<String>Can only be used with value USER_WATCHLIST, which returns only user-created watchlists and excludes those created by IB.
- Example:
Some("USER_WATCHLIST".to_string())
Trait Implementations§
Source§impl Clone for GetAllWatchlistsRequestQuery
impl Clone for GetAllWatchlistsRequestQuery
Source§fn clone(&self) -> GetAllWatchlistsRequestQuery
fn clone(&self) -> GetAllWatchlistsRequestQuery
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 GetAllWatchlistsRequestQuery
impl Debug for GetAllWatchlistsRequestQuery
Source§impl PartialEq for GetAllWatchlistsRequestQuery
impl PartialEq for GetAllWatchlistsRequestQuery
Source§fn eq(&self, other: &GetAllWatchlistsRequestQuery) -> bool
fn eq(&self, other: &GetAllWatchlistsRequestQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetAllWatchlistsRequestQuery
Auto Trait Implementations§
impl Freeze for GetAllWatchlistsRequestQuery
impl RefUnwindSafe for GetAllWatchlistsRequestQuery
impl Send for GetAllWatchlistsRequestQuery
impl Sync for GetAllWatchlistsRequestQuery
impl Unpin for GetAllWatchlistsRequestQuery
impl UnsafeUnpin for GetAllWatchlistsRequestQuery
impl UnwindSafe for GetAllWatchlistsRequestQuery
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