pub struct ResendFailedNotificationsJobStatusResponse {
pub job_id: String,
pub status: Status,
pub processed: f64,
pub total: f64,
}Fields§
§job_id: StringBulk resend job ID
status: StatusBulk resend job status
processed: f64Number of notifications processed
total: f64Total number of notifications to process
Implementations§
Trait Implementations§
Source§impl Clone for ResendFailedNotificationsJobStatusResponse
impl Clone for ResendFailedNotificationsJobStatusResponse
Source§fn clone(&self) -> ResendFailedNotificationsJobStatusResponse
fn clone(&self) -> ResendFailedNotificationsJobStatusResponse
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 Default for ResendFailedNotificationsJobStatusResponse
impl Default for ResendFailedNotificationsJobStatusResponse
Source§fn default() -> ResendFailedNotificationsJobStatusResponse
fn default() -> ResendFailedNotificationsJobStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResendFailedNotificationsJobStatusResponse
impl<'de> Deserialize<'de> for ResendFailedNotificationsJobStatusResponse
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
Source§impl PartialEq for ResendFailedNotificationsJobStatusResponse
impl PartialEq for ResendFailedNotificationsJobStatusResponse
Source§fn eq(&self, other: &ResendFailedNotificationsJobStatusResponse) -> bool
fn eq(&self, other: &ResendFailedNotificationsJobStatusResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResendFailedNotificationsJobStatusResponse
Auto Trait Implementations§
impl Freeze for ResendFailedNotificationsJobStatusResponse
impl RefUnwindSafe for ResendFailedNotificationsJobStatusResponse
impl Send for ResendFailedNotificationsJobStatusResponse
impl Sync for ResendFailedNotificationsJobStatusResponse
impl Unpin for ResendFailedNotificationsJobStatusResponse
impl UnwindSafe for ResendFailedNotificationsJobStatusResponse
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