pub struct Account { /* private fields */ }
Implementations§
Source§impl Account
impl Account
pub fn set_account_alias(&mut self, account_alias: String)
pub fn with_account_alias(self, account_alias: String) -> Account
pub fn account_alias(&self) -> Option<&String>
pub fn reset_account_alias(&mut self)
pub fn set_account_id(&mut self, account_id: String)
pub fn with_account_id(self, account_id: String) -> Account
pub fn account_id(&self) -> Option<&String>
pub fn reset_account_id(&mut self)
pub fn set_account_status(&mut self, account_status: f32)
pub fn with_account_status(self, account_status: f32) -> Account
pub fn account_status(&self) -> Option<&f32>
pub fn reset_account_status(&mut self)
pub fn set_account_title(&mut self, account_title: String)
pub fn with_account_title(self, account_title: String) -> Account
pub fn account_title(&self) -> Option<&String>
pub fn reset_account_title(&mut self)
pub fn set_account_van(&mut self, account_van: String)
pub fn with_account_van(self, account_van: String) -> Account
pub fn account_van(&self) -> Option<&String>
pub fn reset_account_van(&mut self)
pub fn set_clearing_status(&mut self, clearing_status: String)
pub fn with_clearing_status(self, clearing_status: String) -> Account
pub fn clearing_status(&self) -> Option<&String>
pub fn reset_clearing_status(&mut self)
pub fn set_covestor(&mut self, covestor: bool)
pub fn with_covestor(self, covestor: bool) -> Account
pub fn covestor(&self) -> Option<&bool>
pub fn reset_covestor(&mut self)
pub fn set_currency(&mut self, currency: String)
pub fn with_currency(self, currency: String) -> Account
pub fn currency(&self) -> Option<&String>
pub fn reset_currency(&mut self)
pub fn set_desc(&mut self, desc: String)
pub fn with_desc(self, desc: String) -> Account
pub fn desc(&self) -> Option<&String>
pub fn reset_desc(&mut self)
pub fn set_display_name(&mut self, display_name: String)
pub fn with_display_name(self, display_name: String) -> Account
pub fn display_name(&self) -> Option<&String>
pub fn reset_display_name(&mut self)
pub fn set_faclient(&mut self, faclient: bool)
pub fn with_faclient(self, faclient: bool) -> Account
pub fn faclient(&self) -> Option<&bool>
pub fn reset_faclient(&mut self)
pub fn set_id(&mut self, id: String)
pub fn with_id(self, id: String) -> Account
pub fn id(&self) -> Option<&String>
pub fn reset_id(&mut self)
pub fn set_parent(&mut self, parent: AccountParent)
pub fn with_parent(self, parent: AccountParent) -> Account
pub fn parent(&self) -> Option<&AccountParent>
pub fn reset_parent(&mut self)
pub fn set_trading_type(&mut self, trading_type: String)
pub fn with_trading_type(self, trading_type: String) -> Account
pub fn trading_type(&self) -> Option<&String>
pub fn reset_trading_type(&mut self)
pub fn set__type(&mut self, _type: String)
pub fn with__type(self, _type: String) -> Account
pub fn _type(&self) -> Option<&String>
pub fn reset__type(&mut self)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Account
impl<'de> Deserialize<'de> for Account
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Account
impl RefUnwindSafe for Account
impl Send for Account
impl Sync for Account
impl Unpin for Account
impl UnwindSafe for Account
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