pub struct AccountOut {
pub acc_id: String,
pub trd_env: i32,
pub env_label: &'static str,
pub trd_market_auth_list: Vec<i32>,
pub card_num: Option<String>,
pub security_firm: Option<i32>,
pub acc_type: Option<i32>,
pub acc_status: Option<i32>,
pub acc_role: Option<i32>,
pub acc_label: Option<String>,
pub sim_acc_type: Option<i32>,
pub jp_acc_type: Vec<i32>,
}Fields§
§acc_id: String§trd_env: i32§env_label: &'static str§trd_market_auth_list: Vec<i32>§card_num: Option<String>§security_firm: Option<i32>§acc_type: Option<i32>§acc_status: Option<i32>§acc_role: Option<i32>§acc_label: Option<String>§sim_acc_type: Option<i32>§jp_acc_type: Vec<i32>Trait Implementations§
Auto Trait Implementations§
impl Freeze for AccountOut
impl RefUnwindSafe for AccountOut
impl Send for AccountOut
impl Sync for AccountOut
impl Unpin for AccountOut
impl UnsafeUnpin for AccountOut
impl UnwindSafe for AccountOut
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more