pub struct SendQuotaConfig {
pub max_24_hour_send: f64,
pub max_send_rate: f64,
}Expand description
Send quota configuration.
Fields§
§max_24_hour_send: f64Max sends per 24 hours.
max_send_rate: f64Max sends per second.
Trait Implementations§
Source§impl Clone for SendQuotaConfig
impl Clone for SendQuotaConfig
Source§fn clone(&self) -> SendQuotaConfig
fn clone(&self) -> SendQuotaConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SendQuotaConfig
impl Debug for SendQuotaConfig
Auto Trait Implementations§
impl Freeze for SendQuotaConfig
impl RefUnwindSafe for SendQuotaConfig
impl Send for SendQuotaConfig
impl Sync for SendQuotaConfig
impl Unpin for SendQuotaConfig
impl UnsafeUnpin for SendQuotaConfig
impl UnwindSafe for SendQuotaConfig
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