Skip to main content

RspQueryAccountField

Struct RspQueryAccountField 

Source
#[repr(C)]
pub struct RspQueryAccountField {
Show 40 fields pub is_null: bool, pub TradeCode: String, pub BankID: String, pub BankBranchID: String, pub BrokerID: String, pub BrokerBranchID: String, pub TradeDate: String, pub TradeTime: String, pub BankSerial: String, pub TradingDay: String, pub PlateSerial: i32, pub LastFragment: u8, pub SessionID: i32, pub CustomerName: String, pub IdCardType: u8, pub IdentifiedCardNo: String, pub CustType: u8, pub BankAccount: String, pub BankPassWord: String, pub AccountID: String, pub Password: String, pub FutureSerial: i32, pub InstallID: i32, pub UserID: String, pub VerifyCertNoFlag: u8, pub CurrencyID: String, pub Digest: Vec<u8>, pub BankAccType: u8, pub DeviceID: String, pub BankSecuAccType: u8, pub BrokerIDByBank: Vec<u8>, pub BankSecuAcc: Vec<u8>, pub BankPwdFlag: u8, pub SecuPwdFlag: u8, pub OperNo: String, pub RequestID: i32, pub TID: i32, pub BankUseAmount: f64, pub BankFetchAmount: f64, pub LongCustomerName: String,
}
Expand description

查询账户信息响应

Fields§

§is_null: bool

C++ 端传入的整体 Field 是否为 nullptr

§TradeCode: String

业务功能码

§BankID: String

银行代码

§BankBranchID: String

银行分支机构代码

§BrokerID: String

期商代码

§BrokerBranchID: String

期商分支机构代码

§TradeDate: String

交易日期

§TradeTime: String

交易时间

§BankSerial: String

银行流水号

§TradingDay: String

交易系统日期

§PlateSerial: i32

银期平台消息流水号

§LastFragment: u8

最后分片标志

§SessionID: i32

会话号

§CustomerName: String

客户姓名

§IdCardType: u8

证件类型

§IdentifiedCardNo: String

证件号码

§CustType: u8

客户类型

§BankAccount: String

银行帐号

§BankPassWord: String

银行密码

§AccountID: String

投资者帐号

§Password: String

期货密码

§FutureSerial: i32

期货公司流水号

§InstallID: i32

安装编号

§UserID: String

用户标识

§VerifyCertNoFlag: u8

验证客户证件号码标志

§CurrencyID: String

币种代码

§Digest: Vec<u8>

摘要

§BankAccType: u8

银行帐号类型

§DeviceID: String

渠道标志

§BankSecuAccType: u8

期货单位帐号类型

§BrokerIDByBank: Vec<u8>

期货公司银行编码

§BankSecuAcc: Vec<u8>

期货单位帐号

§BankPwdFlag: u8

银行密码标志

§SecuPwdFlag: u8

期货资金密码核对标志

§OperNo: String

交易柜员

§RequestID: i32

请求编号

§TID: i32

交易ID

§BankUseAmount: f64

银行可用金额

§BankFetchAmount: f64

银行可取金额

§LongCustomerName: String

长客户姓名

Trait Implementations§

Source§

impl Clone for RspQueryAccountField

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RspQueryAccountField

Source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for RspQueryAccountField

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl ExternType for RspQueryAccountField

Source§

type Kind = Trivial

Source§

type Id

A type-level representation of the type’s C++ namespace and type name. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.