#[repr(C)]pub struct UserSystemInfoField {
pub is_null: bool,
pub BrokerID: String,
pub UserID: String,
pub ClientSystemInfoLen: i32,
pub ClientSystemInfo: String,
pub ClientIPPort: i32,
pub ClientLoginTime: String,
pub ClientAppID: String,
pub ClientPublicIP: String,
pub ClientLoginRemark: String,
}Expand description
用户系统信息
Fields§
§is_null: boolC++ 端传入的整体 Field 是否为 nullptr
BrokerID: String经纪公司代码
UserID: String用户代码
ClientSystemInfoLen: i32用户端系统内部信息长度
ClientSystemInfo: String用户端系统内部信息
ClientIPPort: i32终端IP端口
ClientLoginTime: String登录成功时间
ClientAppID: StringApp代码
ClientPublicIP: String用户公网IP
ClientLoginRemark: String客户登录备注2
Trait Implementations§
Source§impl Clone for UserSystemInfoField
impl Clone for UserSystemInfoField
Source§impl Debug for UserSystemInfoField
impl Debug for UserSystemInfoField
Source§impl Default for UserSystemInfoField
impl Default for UserSystemInfoField
Source§impl ExternType for UserSystemInfoField
impl ExternType for UserSystemInfoField
Auto Trait Implementations§
impl Freeze for UserSystemInfoField
impl RefUnwindSafe for UserSystemInfoField
impl Send for UserSystemInfoField
impl Sync for UserSystemInfoField
impl Unpin for UserSystemInfoField
impl UnsafeUnpin for UserSystemInfoField
impl UnwindSafe for UserSystemInfoField
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