pub struct BatchRequestCounts {
pub total: u32,
pub completed: u32,
pub failed: u32,
}
Fields§
§total: u32
Total number of requests in the batch.
completed: u32
Number of requests that have been completed successfully.
failed: u32
Number of requests that have failed.
Trait Implementations§
Source§impl Clone for BatchRequestCounts
impl Clone for BatchRequestCounts
Source§fn clone(&self) -> BatchRequestCounts
fn clone(&self) -> BatchRequestCounts
Returns a copy 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 BatchRequestCounts
impl Debug for BatchRequestCounts
Source§impl<'de> Deserialize<'de> for BatchRequestCounts
impl<'de> Deserialize<'de> for BatchRequestCounts
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 BatchRequestCounts
impl PartialEq for BatchRequestCounts
Source§impl Serialize for BatchRequestCounts
impl Serialize for BatchRequestCounts
impl StructuralPartialEq for BatchRequestCounts
Auto Trait Implementations§
impl Freeze for BatchRequestCounts
impl RefUnwindSafe for BatchRequestCounts
impl Send for BatchRequestCounts
impl Sync for BatchRequestCounts
impl Unpin for BatchRequestCounts
impl UnwindSafe for BatchRequestCounts
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