pub struct ContraBrokerInfo {
pub account_title: Option<String>,
pub account_type: String,
pub broker_account_id: String,
pub broker_name: String,
pub contact_email: String,
pub contact_name: Option<String>,
pub contact_phone: String,
pub country: String,
pub depository_id: String,
}Fields§
§account_title: Option<String>- Example:
Some("Equatex U.S. Inc. For the Benefit of the Plan Participants of UBS AG".to_string())
account_type: String- Example:
"ORG".to_string()
broker_account_id: String- Example:
"as3456567678578N".to_string()
broker_name: String- Example:
"JP MORGAN".to_string()
contact_email: String- Example:
"a@gmail.com".to_string()
contact_name: Option<String>- Example:
Some("as".to_string())
contact_phone: String- Example:
"2039126155".to_string()
country: String- Example:
"United States".to_string()
depository_id: String- Example:
"1234".to_string()
Trait Implementations§
Source§impl Clone for ContraBrokerInfo
impl Clone for ContraBrokerInfo
Source§fn clone(&self) -> ContraBrokerInfo
fn clone(&self) -> ContraBrokerInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ContraBrokerInfo
impl Debug for ContraBrokerInfo
Source§impl Default for ContraBrokerInfo
impl Default for ContraBrokerInfo
Source§impl PartialEq for ContraBrokerInfo
impl PartialEq for ContraBrokerInfo
Source§impl Serialize for ContraBrokerInfo
impl Serialize for ContraBrokerInfo
Source§impl Validate for ContraBrokerInfo
impl Validate for ContraBrokerInfo
Source§impl<'v_a> ValidateArgs<'v_a> for ContraBrokerInfo
impl<'v_a> ValidateArgs<'v_a> for ContraBrokerInfo
impl StructuralPartialEq for ContraBrokerInfo
Auto Trait Implementations§
impl Freeze for ContraBrokerInfo
impl RefUnwindSafe for ContraBrokerInfo
impl Send for ContraBrokerInfo
impl Sync for ContraBrokerInfo
impl Unpin for ContraBrokerInfo
impl UnsafeUnpin for ContraBrokerInfo
impl UnwindSafe for ContraBrokerInfo
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