pub struct ValidationUsage {
pub daily: u64,
pub daily_limit: u64,
pub monthly: u64,
pub monthly_limit: u64,
}Expand description
Sending-quota usage returned alongside a validation.
Fields§
§daily: u64Emails sent today.
daily_limit: u64Daily send limit.
monthly: u64Emails sent this month.
monthly_limit: u64Monthly send limit.
Trait Implementations§
Source§impl Clone for ValidationUsage
impl Clone for ValidationUsage
Source§fn clone(&self) -> ValidationUsage
fn clone(&self) -> ValidationUsage
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 ValidationUsage
impl Debug for ValidationUsage
Source§impl<'de> Deserialize<'de> for ValidationUsage
impl<'de> Deserialize<'de> for ValidationUsage
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 ValidationUsage
impl RefUnwindSafe for ValidationUsage
impl Send for ValidationUsage
impl Sync for ValidationUsage
impl Unpin for ValidationUsage
impl UnsafeUnpin for ValidationUsage
impl UnwindSafe for ValidationUsage
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