pub struct Watchlist200Response {
pub hash: Option<String>,
pub id: Option<String>,
pub instruments: Option<Vec<Value>>,
pub name: Option<String>,
pub read_only: Option<bool>,
}Fields§
§hash: Option<String>IB’s internal hash of the submitted watchlist.
id: Option<String>The submitted watchlist ID.
instruments: Option<Vec<Value>>Array will always be empty. Contents can be queried via GET /iserver/watchlist?id=
name: Option<String>The submitted human-readable watchlist name.
read_only: Option<bool>Indicates whether watchlist is write-restricted. User-created watchlists will always show false.
Trait Implementations§
Source§impl Clone for Watchlist200Response
impl Clone for Watchlist200Response
Source§fn clone(&self) -> Watchlist200Response
fn clone(&self) -> Watchlist200Response
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 Watchlist200Response
impl Debug for Watchlist200Response
Source§impl Default for Watchlist200Response
impl Default for Watchlist200Response
Source§impl<'de> Deserialize<'de> for Watchlist200Response
impl<'de> Deserialize<'de> for Watchlist200Response
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 PartialEq for Watchlist200Response
impl PartialEq for Watchlist200Response
impl StructuralPartialEq for Watchlist200Response
Auto Trait Implementations§
impl Freeze for Watchlist200Response
impl RefUnwindSafe for Watchlist200Response
impl Send for Watchlist200Response
impl Sync for Watchlist200Response
impl Unpin for Watchlist200Response
impl UnsafeUnpin for Watchlist200Response
impl UnwindSafe for Watchlist200Response
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