pub struct AccCashInfo {
pub currency: Option<u32>,
pub balance: Option<String>,
pub cash_drawable: Option<String>,
pub settled: Option<String>,
pub unsettled_list: Vec<Unsettled>,
pub disable: Option<bool>,
pub securities_cash: Option<String>,
pub swept_cash: Option<String>,
pub cash_buypower: Option<String>,
}Expand description
账户现金信息
Fields§
§currency: Option<u32>货币类型,取值参考 Currency
balance: Option<String>现金结余
cash_drawable: Option<String>现金可提金额
settled: Option<String>一下字段只有客服自查系统专用
已交收数量
unsettled_list: Vec<Unsettled>待交收列表
disable: Option<bool>原现金宝现金化开关,为兼容客户端旧版本保留,目前废弃
securities_cash: Option<String>证券账号现金结余
swept_cash: Option<String>银行现金结余
cash_buypower: Option<String>现金购买力(分币种)
Implementations§
Source§impl AccCashInfo
impl AccCashInfo
Sourcepub fn currency(&self) -> u32
pub fn currency(&self) -> u32
Returns the value of currency, or the default value if currency is unset.
Sourcepub fn balance(&self) -> &str
pub fn balance(&self) -> &str
Returns the value of balance, or the default value if balance is unset.
Sourcepub fn cash_drawable(&self) -> &str
pub fn cash_drawable(&self) -> &str
Returns the value of cash_drawable, or the default value if cash_drawable is unset.
Sourcepub fn settled(&self) -> &str
pub fn settled(&self) -> &str
Returns the value of settled, or the default value if settled is unset.
Sourcepub fn disable(&self) -> bool
pub fn disable(&self) -> bool
Returns the value of disable, or the default value if disable is unset.
Sourcepub fn securities_cash(&self) -> &str
pub fn securities_cash(&self) -> &str
Returns the value of securities_cash, or the default value if securities_cash is unset.
Sourcepub fn swept_cash(&self) -> &str
pub fn swept_cash(&self) -> &str
Returns the value of swept_cash, or the default value if swept_cash is unset.
Sourcepub fn cash_buypower(&self) -> &str
pub fn cash_buypower(&self) -> &str
Returns the value of cash_buypower, or the default value if cash_buypower is unset.
Trait Implementations§
Source§impl Clone for AccCashInfo
impl Clone for AccCashInfo
Source§fn clone(&self) -> AccCashInfo
fn clone(&self) -> AccCashInfo
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 AccCashInfo
impl Debug for AccCashInfo
Source§impl Default for AccCashInfo
impl Default for AccCashInfo
Source§impl Message for AccCashInfo
impl Message for AccCashInfo
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
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,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
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,
Encodes the message with a length-delimiter to a buffer. Read more
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,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
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,
Decodes a length-delimited instance of the message from the buffer.
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,
Decodes an instance of the message from a buffer, and merges it into
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,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for AccCashInfo
impl PartialEq for AccCashInfo
impl StructuralPartialEq for AccCashInfo
Auto Trait Implementations§
impl Freeze for AccCashInfo
impl RefUnwindSafe for AccCashInfo
impl Send for AccCashInfo
impl Sync for AccCashInfo
impl Unpin for AccCashInfo
impl UnsafeUnpin for AccCashInfo
impl UnwindSafe for AccCashInfo
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