pub struct BatchListResult {
pub batches: Vec<BatchListItem>,
pub next_cursor: Option<String>,
pub provider_metadata: Option<ProviderMetadata>,
}Expand description
Result of listing batches.
Fields§
§batches: Vec<BatchListItem>Batches on this page.
next_cursor: Option<String>Cursor for the next page.
provider_metadata: Option<ProviderMetadata>Provider-specific metadata.
Trait Implementations§
Source§impl Clone for BatchListResult
impl Clone for BatchListResult
Source§fn clone(&self) -> BatchListResult
fn clone(&self) -> BatchListResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchListResult
impl Debug for BatchListResult
Source§impl<'de> Deserialize<'de> for BatchListResult
impl<'de> Deserialize<'de> for BatchListResult
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 BatchListResult
impl PartialEq for BatchListResult
Source§impl Serialize for BatchListResult
impl Serialize for BatchListResult
impl StructuralPartialEq for BatchListResult
Auto Trait Implementations§
impl Freeze for BatchListResult
impl RefUnwindSafe for BatchListResult
impl Send for BatchListResult
impl Sync for BatchListResult
impl Unpin for BatchListResult
impl UnsafeUnpin for BatchListResult
impl UnwindSafe for BatchListResult
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