pub struct UserSettingUpdatePortfolioUserSettingSuccess {
pub portfolio_chart: String,
pub holding_chart: String,
pub combined: bool,
pub report_combined: bool,
pub grouping: String,
pub report_grouping: String,
pub report_currency: Currency,
pub include_sold_shares: bool,
pub report_include_sold_shares: bool,
pub benchmark_instrument_id: String,
pub taxable_show_comments: bool,
pub taxable_grouped_by_holding: bool,
}Fields§
§portfolio_chart: StringThe chart type to use for the portfolio: VALUE, VALUELINE, GROWTH, BENCHMARK, HIDE
holding_chart: StringThe chart type to use for holdings in the portfolio: PRICE, HOLDING_VALUE, BENCHMARK, HIDE
combined: boolTrue to combine holdings in consolidated portfolios
report_combined: boolTrue to combine holdings in consolidated portfolios when showing reports
grouping: StringGrouping to use, as a string or integer custom group id
report_grouping: StringGrouping to use for reports
report_currency: CurrencyCurrency to use for reports
True to include sold shares in calculations
True to include sold shares in reports
benchmark_instrument_id: StringInstrument ID for benchmark
taxable_show_comments: boolTrue to show comments on taxable income report
taxable_grouped_by_holding: boolTrue to show holding totals on taxable income report
Trait Implementations§
Source§impl Clone for UserSettingUpdatePortfolioUserSettingSuccess
impl Clone for UserSettingUpdatePortfolioUserSettingSuccess
Source§fn clone(&self) -> UserSettingUpdatePortfolioUserSettingSuccess
fn clone(&self) -> UserSettingUpdatePortfolioUserSettingSuccess
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<'de> Deserialize<'de> for UserSettingUpdatePortfolioUserSettingSuccess
impl<'de> Deserialize<'de> for UserSettingUpdatePortfolioUserSettingSuccess
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 UserSettingUpdatePortfolioUserSettingSuccess
impl RefUnwindSafe for UserSettingUpdatePortfolioUserSettingSuccess
impl Send for UserSettingUpdatePortfolioUserSettingSuccess
impl Sync for UserSettingUpdatePortfolioUserSettingSuccess
impl Unpin for UserSettingUpdatePortfolioUserSettingSuccess
impl UnwindSafe for UserSettingUpdatePortfolioUserSettingSuccess
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