Struct Account

Source
pub struct Account { /* private fields */ }

Implementations§

Source§

impl Account

Source

pub fn new() -> Account

account information

Source

pub fn set_account_alias(&mut self, account_alias: String)

Source

pub fn with_account_alias(self, account_alias: String) -> Account

Source

pub fn account_alias(&self) -> Option<&String>

Source

pub fn reset_account_alias(&mut self)

Source

pub fn set_account_id(&mut self, account_id: String)

Source

pub fn with_account_id(self, account_id: String) -> Account

Source

pub fn account_id(&self) -> Option<&String>

Source

pub fn reset_account_id(&mut self)

Source

pub fn set_account_status(&mut self, account_status: f32)

Source

pub fn with_account_status(self, account_status: f32) -> Account

Source

pub fn account_status(&self) -> Option<&f32>

Source

pub fn reset_account_status(&mut self)

Source

pub fn set_account_title(&mut self, account_title: String)

Source

pub fn with_account_title(self, account_title: String) -> Account

Source

pub fn account_title(&self) -> Option<&String>

Source

pub fn reset_account_title(&mut self)

Source

pub fn set_account_van(&mut self, account_van: String)

Source

pub fn with_account_van(self, account_van: String) -> Account

Source

pub fn account_van(&self) -> Option<&String>

Source

pub fn reset_account_van(&mut self)

Source

pub fn set_clearing_status(&mut self, clearing_status: String)

Source

pub fn with_clearing_status(self, clearing_status: String) -> Account

Source

pub fn clearing_status(&self) -> Option<&String>

Source

pub fn reset_clearing_status(&mut self)

Source

pub fn set_covestor(&mut self, covestor: bool)

Source

pub fn with_covestor(self, covestor: bool) -> Account

Source

pub fn covestor(&self) -> Option<&bool>

Source

pub fn reset_covestor(&mut self)

Source

pub fn set_currency(&mut self, currency: String)

Source

pub fn with_currency(self, currency: String) -> Account

Source

pub fn currency(&self) -> Option<&String>

Source

pub fn reset_currency(&mut self)

Source

pub fn set_desc(&mut self, desc: String)

Source

pub fn with_desc(self, desc: String) -> Account

Source

pub fn desc(&self) -> Option<&String>

Source

pub fn reset_desc(&mut self)

Source

pub fn set_display_name(&mut self, display_name: String)

Source

pub fn with_display_name(self, display_name: String) -> Account

Source

pub fn display_name(&self) -> Option<&String>

Source

pub fn reset_display_name(&mut self)

Source

pub fn set_faclient(&mut self, faclient: bool)

Source

pub fn with_faclient(self, faclient: bool) -> Account

Source

pub fn faclient(&self) -> Option<&bool>

Source

pub fn reset_faclient(&mut self)

Source

pub fn set_id(&mut self, id: String)

Source

pub fn with_id(self, id: String) -> Account

Source

pub fn id(&self) -> Option<&String>

Source

pub fn reset_id(&mut self)

Source

pub fn set_parent(&mut self, parent: AccountParent)

Source

pub fn with_parent(self, parent: AccountParent) -> Account

Source

pub fn parent(&self) -> Option<&AccountParent>

Source

pub fn reset_parent(&mut self)

Source

pub fn set_trading_type(&mut self, trading_type: String)

Source

pub fn with_trading_type(self, trading_type: String) -> Account

Source

pub fn trading_type(&self) -> Option<&String>

Source

pub fn reset_trading_type(&mut self)

Source

pub fn set__type(&mut self, _type: String)

Source

pub fn with__type(self, _type: String) -> Account

Source

pub fn _type(&self) -> Option<&String>

Source

pub fn reset__type(&mut self)

Trait Implementations§

Source§

impl Debug for Account

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Account

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for Account

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,