pub struct Batch_RequestCounts {
pub total: i64,
pub completed: i64,
pub failed: i64,
}
Expand description
The request counts for different statuses within the batch.
Fields§
§total: i64
Total number of requests in the batch.
completed: i64
Number of requests that have been completed successfully.
failed: i64
Number of requests that have failed.
Trait Implementations§
Source§impl Clone for Batch_RequestCounts
impl Clone for Batch_RequestCounts
Source§fn clone(&self) -> Batch_RequestCounts
fn clone(&self) -> Batch_RequestCounts
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 Batch_RequestCounts
impl Debug for Batch_RequestCounts
Source§impl Default for Batch_RequestCounts
impl Default for Batch_RequestCounts
Source§fn default() -> Batch_RequestCounts
fn default() -> Batch_RequestCounts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Batch_RequestCounts
impl RefUnwindSafe for Batch_RequestCounts
impl Send for Batch_RequestCounts
impl Sync for Batch_RequestCounts
impl Unpin for Batch_RequestCounts
impl UnwindSafe for Batch_RequestCounts
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