pub struct BatchRequestOutput {
pub id: String,
pub custom_id: 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: String§custom_id: StringA 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 copy 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 moreAuto 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