#[repr(C)]pub struct AppAuthenticationCodeField {
pub is_null: bool,
pub BrokerID: String,
pub AppID: String,
pub AuthCode: String,
pub PreAuthCode: String,
pub AppType: u8,
}Expand description
App客户端认证码
Fields§
§is_null: boolC++ 端传入的整体 Field 是否为 nullptr
BrokerID: String经纪公司代码
AppID: StringApp代码
AuthCode: String认证码
PreAuthCode: String旧认证码
AppType: u8App类型
Trait Implementations§
Source§impl Clone for AppAuthenticationCodeField
impl Clone for AppAuthenticationCodeField
Source§impl Debug for AppAuthenticationCodeField
impl Debug for AppAuthenticationCodeField
Source§impl Default for AppAuthenticationCodeField
impl Default for AppAuthenticationCodeField
Auto Trait Implementations§
impl Freeze for AppAuthenticationCodeField
impl RefUnwindSafe for AppAuthenticationCodeField
impl Send for AppAuthenticationCodeField
impl Sync for AppAuthenticationCodeField
impl Unpin for AppAuthenticationCodeField
impl UnsafeUnpin for AppAuthenticationCodeField
impl UnwindSafe for AppAuthenticationCodeField
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