pub struct AssetNode {
pub timestamp: Option<i64>,
pub total_value: Option<String>,
pub node_income: Option<String>,
pub exchange_desc_list: Option<String>,
pub has_cash_inout: Option<bool>,
pub has_stock_inout: Option<bool>,
pub has_other_inout: Option<bool>,
pub inout_summaries: Vec<InoutSummary>,
pub source_type: Option<String>,
pub node_income_day: Option<String>,
pub node_date: Option<String>,
pub has_cdp_inout: Option<bool>,
}Fields§
§timestamp: Option<i64>§total_value: Option<String>§node_income: Option<String>§exchange_desc_list: Option<String>§has_cash_inout: Option<bool>§has_stock_inout: Option<bool>§has_other_inout: Option<bool>§inout_summaries: Vec<InoutSummary>§source_type: Option<String>§node_income_day: Option<String>§node_date: Option<String>§has_cdp_inout: Option<bool>Implementations§
Source§impl AssetNode
impl AssetNode
Sourcepub fn timestamp(&self) -> i64
pub fn timestamp(&self) -> i64
Returns the value of timestamp, or the default value if timestamp is unset.
Sourcepub fn total_value(&self) -> &str
pub fn total_value(&self) -> &str
Returns the value of total_value, or the default value if total_value is unset.
Sourcepub fn node_income(&self) -> &str
pub fn node_income(&self) -> &str
Returns the value of node_income, or the default value if node_income is unset.
Sourcepub fn exchange_desc_list(&self) -> &str
pub fn exchange_desc_list(&self) -> &str
Returns the value of exchange_desc_list, or the default value if exchange_desc_list is unset.
Sourcepub fn has_cash_inout(&self) -> bool
pub fn has_cash_inout(&self) -> bool
Returns the value of has_cash_inout, or the default value if has_cash_inout is unset.
Sourcepub fn has_stock_inout(&self) -> bool
pub fn has_stock_inout(&self) -> bool
Returns the value of has_stock_inout, or the default value if has_stock_inout is unset.
Sourcepub fn has_other_inout(&self) -> bool
pub fn has_other_inout(&self) -> bool
Returns the value of has_other_inout, or the default value if has_other_inout is unset.
Sourcepub fn source_type(&self) -> &str
pub fn source_type(&self) -> &str
Returns the value of source_type, or the default value if source_type is unset.
Sourcepub fn node_income_day(&self) -> &str
pub fn node_income_day(&self) -> &str
Returns the value of node_income_day, or the default value if node_income_day is unset.
Sourcepub fn node_date(&self) -> &str
pub fn node_date(&self) -> &str
Returns the value of node_date, or the default value if node_date is unset.
Sourcepub fn has_cdp_inout(&self) -> bool
pub fn has_cdp_inout(&self) -> bool
Returns the value of has_cdp_inout, or the default value if has_cdp_inout is unset.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AssetNode
impl<'de> Deserialize<'de> for AssetNode
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 AssetNode
impl Message for AssetNode
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.