pub struct AssetTrend {Show 13 fields
pub currency: Option<String>,
pub opening_assets: Option<String>,
pub net_inflow: Option<String>,
pub comprehensive_income: Option<String>,
pub ending_assets: Option<String>,
pub cash_in_out: Option<String>,
pub stock_in_out: Option<String>,
pub other_in_out: Option<String>,
pub nodes: Vec<AssetNode>,
pub backend_area: Option<String>,
pub time_location: Option<String>,
pub cdp_in_out: Option<String>,
pub forex_exchange_gl: Option<String>,
}Fields§
§currency: Option<String>§opening_assets: Option<String>§net_inflow: Option<String>§comprehensive_income: Option<String>§ending_assets: Option<String>§cash_in_out: Option<String>§stock_in_out: Option<String>§other_in_out: Option<String>§nodes: Vec<AssetNode>§backend_area: Option<String>§time_location: Option<String>§cdp_in_out: Option<String>§forex_exchange_gl: Option<String>Implementations§
Source§impl AssetTrend
impl AssetTrend
Sourcepub fn currency(&self) -> &str
pub fn currency(&self) -> &str
Returns the value of currency, or the default value if currency is unset.
Sourcepub fn opening_assets(&self) -> &str
pub fn opening_assets(&self) -> &str
Returns the value of opening_assets, or the default value if opening_assets is unset.
Sourcepub fn net_inflow(&self) -> &str
pub fn net_inflow(&self) -> &str
Returns the value of net_inflow, or the default value if net_inflow is unset.
Sourcepub fn comprehensive_income(&self) -> &str
pub fn comprehensive_income(&self) -> &str
Returns the value of comprehensive_income, or the default value if comprehensive_income is unset.
Sourcepub fn ending_assets(&self) -> &str
pub fn ending_assets(&self) -> &str
Returns the value of ending_assets, or the default value if ending_assets is unset.
Sourcepub fn cash_in_out(&self) -> &str
pub fn cash_in_out(&self) -> &str
Returns the value of cash_in_out, or the default value if cash_in_out is unset.
Sourcepub fn stock_in_out(&self) -> &str
pub fn stock_in_out(&self) -> &str
Returns the value of stock_in_out, or the default value if stock_in_out is unset.
Sourcepub fn other_in_out(&self) -> &str
pub fn other_in_out(&self) -> &str
Returns the value of other_in_out, or the default value if other_in_out is unset.
Sourcepub fn backend_area(&self) -> &str
pub fn backend_area(&self) -> &str
Returns the value of backend_area, or the default value if backend_area is unset.
Sourcepub fn time_location(&self) -> &str
pub fn time_location(&self) -> &str
Returns the value of time_location, or the default value if time_location is unset.
Sourcepub fn cdp_in_out(&self) -> &str
pub fn cdp_in_out(&self) -> &str
Returns the value of cdp_in_out, or the default value if cdp_in_out is unset.
Sourcepub fn forex_exchange_gl(&self) -> &str
pub fn forex_exchange_gl(&self) -> &str
Returns the value of forex_exchange_gl, or the default value if forex_exchange_gl is unset.
Trait Implementations§
Source§impl Clone for AssetTrend
impl Clone for AssetTrend
Source§fn clone(&self) -> AssetTrend
fn clone(&self) -> AssetTrend
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AssetTrend
impl Debug for AssetTrend
Source§impl Default for AssetTrend
impl Default for AssetTrend
Source§impl<'de> Deserialize<'de> for AssetTrendwhere
AssetTrend: Default,
impl<'de> Deserialize<'de> for AssetTrendwhere
AssetTrend: Default,
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>,
Source§impl Message for AssetTrend
impl Message for AssetTrend
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self.Source§impl PartialEq for AssetTrend
impl PartialEq for AssetTrend
Source§fn eq(&self, other: &AssetTrend) -> bool
fn eq(&self, other: &AssetTrend) -> bool
self and other values to be equal, and is used by ==.