pub struct OnAccountPaymentConfig {
pub rate: f64,
pub avg_days_until_applied: u32,
}Expand description
On-account payment configuration (unapplied payments).
Fields§
§rate: f64Rate of payments that are on-account (unapplied)
avg_days_until_applied: u32Average days until on-account payments are applied
Trait Implementations§
Source§impl Clone for OnAccountPaymentConfig
impl Clone for OnAccountPaymentConfig
Source§fn clone(&self) -> OnAccountPaymentConfig
fn clone(&self) -> OnAccountPaymentConfig
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 OnAccountPaymentConfig
impl Debug for OnAccountPaymentConfig
Source§impl Default for OnAccountPaymentConfig
impl Default for OnAccountPaymentConfig
Source§impl<'de> Deserialize<'de> for OnAccountPaymentConfig
impl<'de> Deserialize<'de> for OnAccountPaymentConfig
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 OnAccountPaymentConfig
impl RefUnwindSafe for OnAccountPaymentConfig
impl Send for OnAccountPaymentConfig
impl Sync for OnAccountPaymentConfig
impl Unpin for OnAccountPaymentConfig
impl UnwindSafe for OnAccountPaymentConfig
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