pub struct BatchResponseFileItem {
pub response: BatchGenerateContentResponseItem,
pub key: usize,
}
Expand description
Batch file response line JSON representation.
Fields§
§response: BatchGenerateContentResponseItem
Batch response (wrapped in response field for API compatibility)
key: usize
Batch response unique identifier
Trait Implementations§
Source§impl Clone for BatchResponseFileItem
impl Clone for BatchResponseFileItem
Source§fn clone(&self) -> BatchResponseFileItem
fn clone(&self) -> BatchResponseFileItem
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 BatchResponseFileItem
impl Debug for BatchResponseFileItem
Source§impl<'de> Deserialize<'de> for BatchResponseFileItem
impl<'de> Deserialize<'de> for BatchResponseFileItem
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 BatchResponseFileItem
impl RefUnwindSafe for BatchResponseFileItem
impl Send for BatchResponseFileItem
impl Sync for BatchResponseFileItem
impl Unpin for BatchResponseFileItem
impl UnwindSafe for BatchResponseFileItem
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