#[repr(C)]pub struct AuthenticationInfoField {
pub is_null: bool,
pub BrokerID: String,
pub UserID: String,
pub UserProductInfo: String,
pub AuthInfo: String,
pub IsResult: i32,
pub AppID: String,
pub AppType: u8,
pub ClientIPAddress: String,
}Expand description
客户端认证信息
Fields§
§is_null: boolC++ 端传入的整体 Field 是否为 nullptr
BrokerID: String经纪公司代码
UserID: String用户代码
UserProductInfo: String用户端产品信息
AuthInfo: String认证信息
IsResult: i32是否为认证结果
AppID: StringApp代码
AppType: u8App类型
ClientIPAddress: String终端IP地址
Trait Implementations§
Source§impl Clone for AuthenticationInfoField
impl Clone for AuthenticationInfoField
Source§impl Debug for AuthenticationInfoField
impl Debug for AuthenticationInfoField
Source§impl Default for AuthenticationInfoField
impl Default for AuthenticationInfoField
Source§impl ExternType for AuthenticationInfoField
impl ExternType for AuthenticationInfoField
Auto Trait Implementations§
impl Freeze for AuthenticationInfoField
impl RefUnwindSafe for AuthenticationInfoField
impl Send for AuthenticationInfoField
impl Sync for AuthenticationInfoField
impl Unpin for AuthenticationInfoField
impl UnsafeUnpin for AuthenticationInfoField
impl UnwindSafe for AuthenticationInfoField
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