pub struct BatchRequestOutput {
pub id: Option<String>,
pub custom_id: Option<String>,
pub response: Option<BatchRequestOutput_Response>,
pub error: Option<BatchRequestOutput_Error>,
}
Expand description
The per-line object of the batch output and error files
Fields§
§id: Option<String>
§custom_id: Option<String>
A developer-provided per-request id that will be used to match outputs to inputs.
response: Option<BatchRequestOutput_Response>
§error: Option<BatchRequestOutput_Error>
Trait Implementations§
Source§impl Clone for BatchRequestOutput
impl Clone for BatchRequestOutput
Source§fn clone(&self) -> BatchRequestOutput
fn clone(&self) -> BatchRequestOutput
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 BatchRequestOutput
impl Debug for BatchRequestOutput
Source§impl Default for BatchRequestOutput
impl Default for BatchRequestOutput
Source§fn default() -> BatchRequestOutput
fn default() -> BatchRequestOutput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BatchRequestOutput
impl RefUnwindSafe for BatchRequestOutput
impl Send for BatchRequestOutput
impl Sync for BatchRequestOutput
impl Unpin for BatchRequestOutput
impl UnwindSafe for BatchRequestOutput
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