Struct SummaryExcludedAccounts

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

Implementations§

Source§

impl SummaryExcludedAccounts

Source

pub fn new() -> SummaryExcludedAccounts

Source

pub fn set_acct_id(&mut self, acct_id: String)

Source

pub fn with_acct_id(self, acct_id: String) -> SummaryExcludedAccounts

Source

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

Source

pub fn reset_acct_id(&mut self)

Source

pub fn set_acct_num_at_fi(&mut self, acct_num_at_fi: String)

Source

pub fn with_acct_num_at_fi( self, acct_num_at_fi: String, ) -> SummaryExcludedAccounts

Source

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

Source

pub fn reset_acct_num_at_fi(&mut self)

Source

pub fn set_acct_title(&mut self, acct_title: String)

Source

pub fn with_acct_title(self, acct_title: String) -> SummaryExcludedAccounts

Source

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

Source

pub fn reset_acct_title(&mut self)

Source

pub fn set_fi_name(&mut self, fi_name: String)

Source

pub fn with_fi_name(self, fi_name: String) -> SummaryExcludedAccounts

Source

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

Source

pub fn reset_fi_name(&mut self)

Source

pub fn set_harvest_code(&mut self, harvest_code: i32)

Source

pub fn with_harvest_code(self, harvest_code: i32) -> SummaryExcludedAccounts

Source

pub fn harvest_code(&self) -> Option<&i32>

Source

pub fn reset_harvest_code(&mut self)

Source

pub fn set_last_update(&mut self, last_update: String)

Source

pub fn with_last_update(self, last_update: String) -> SummaryExcludedAccounts

Source

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

Source

pub fn reset_last_update(&mut self)

Source

pub fn set_last_update_attempt(&mut self, last_update_attempt: String)

Source

pub fn with_last_update_attempt( self, last_update_attempt: String, ) -> SummaryExcludedAccounts

Source

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

Source

pub fn reset_last_update_attempt(&mut self)

Source

pub fn set_last_update_status_code(&mut self, last_update_status_code: String)

Source

pub fn with_last_update_status_code( self, last_update_status_code: String, ) -> SummaryExcludedAccounts

Source

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

Source

pub fn reset_last_update_status_code(&mut self)

Source

pub fn set_rc(&mut self, rc: i32)

Source

pub fn with_rc(self, rc: i32) -> SummaryExcludedAccounts

Source

pub fn rc(&self) -> Option<&i32>

Source

pub fn reset_rc(&mut self)

Trait Implementations§

Source§

impl Debug for SummaryExcludedAccounts

Source§

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

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

impl<'de> Deserialize<'de> for SummaryExcludedAccounts

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 SummaryExcludedAccounts

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>,