pub struct BatchList {
pub data: Vec<BatchMessageResponse>,
pub count: i32,
}Expand description
Paginated list of batches.
Fields§
§data: Vec<BatchMessageResponse>Batches in this page.
count: i32Total count of batches.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BatchList
impl<'de> Deserialize<'de> for BatchList
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 IntoIterator for BatchList
impl IntoIterator for BatchList
Auto Trait Implementations§
impl Freeze for BatchList
impl RefUnwindSafe for BatchList
impl Send for BatchList
impl Sync for BatchList
impl Unpin for BatchList
impl UnwindSafe for BatchList
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