pub struct BatchRequestInput {
pub custom_id: Option<String>,
pub method: Option<String>,
pub url: Option<String>,
}
Expand description
The per-line object of the batch input file
Fields§
§custom_id: Option<String>
A developer-provided per-request id that will be used to match outputs to inputs.
method: Option<String>
The HTTP method to be used for the request.
url: Option<String>
The OpenAI API relative URL to be used for the request.
Trait Implementations§
Source§impl Clone for BatchRequestInput
impl Clone for BatchRequestInput
Source§fn clone(&self) -> BatchRequestInput
fn clone(&self) -> BatchRequestInput
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 moreSource§impl Debug for BatchRequestInput
impl Debug for BatchRequestInput
Source§impl Default for BatchRequestInput
impl Default for BatchRequestInput
Source§fn default() -> BatchRequestInput
fn default() -> BatchRequestInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BatchRequestInput
impl RefUnwindSafe for BatchRequestInput
impl Send for BatchRequestInput
impl Sync for BatchRequestInput
impl Unpin for BatchRequestInput
impl UnwindSafe for BatchRequestInput
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