pub struct BatchListResponse {
pub data: Vec<Batch>,
pub next_token: Option<String>,
}Expand description
Response from listing batches.
Fields§
§data: Vec<Batch>List of batches.
next_token: Option<String>Pagination token for next page.
Trait Implementations§
Source§impl Clone for BatchListResponse
impl Clone for BatchListResponse
Source§fn clone(&self) -> BatchListResponse
fn clone(&self) -> BatchListResponse
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 BatchListResponse
impl Debug for BatchListResponse
Source§impl<'de> Deserialize<'de> for BatchListResponse
impl<'de> Deserialize<'de> for BatchListResponse
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 BatchListResponse
impl RefUnwindSafe for BatchListResponse
impl Send for BatchListResponse
impl Sync for BatchListResponse
impl Unpin for BatchListResponse
impl UnsafeUnpin for BatchListResponse
impl UnwindSafe for BatchListResponse
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