pub struct AutoFill {
pub competitors: bool,
pub portfolio: bool,
pub watchlist: bool,
}Expand description
Configuration for automatic filling of Wall Street Horizon event data.
This struct controls which types of securities should be automatically included when requesting WSH event data. When enabled, the API will include related securities based on the specified criteria.
Fields§
§competitors: boolAutomatically fill in competitor values of existing positions.
portfolio: boolAutomatically fill in portfolio values.
watchlist: boolAutomatically fill in watchlist values.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AutoFill
impl<'de> Deserialize<'de> for AutoFill
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
impl Copy for AutoFill
impl StructuralPartialEq for AutoFill
Auto Trait Implementations§
impl Freeze for AutoFill
impl RefUnwindSafe for AutoFill
impl Send for AutoFill
impl Sync for AutoFill
impl Unpin for AutoFill
impl UnsafeUnpin for AutoFill
impl UnwindSafe for AutoFill
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