pub struct BatchRequestOutputResponse {
pub body: Option<Value>,
pub request_id: Option<String>,
pub status_code: Option<i32>,
}
Fields§
§body: Option<Value>
The JSON body of the response
request_id: Option<String>
An unique identifier for the OpenAI API request. Please include this request ID when contacting support.
status_code: Option<i32>
The HTTP status code of the response
Trait Implementations§
Source§impl Debug for BatchRequestOutputResponse
impl Debug for BatchRequestOutputResponse
Source§impl<'de> Deserialize<'de> for BatchRequestOutputResponse
impl<'de> Deserialize<'de> for BatchRequestOutputResponse
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 BatchRequestOutputResponse
impl RefUnwindSafe for BatchRequestOutputResponse
impl Send for BatchRequestOutputResponse
impl Sync for BatchRequestOutputResponse
impl Unpin for BatchRequestOutputResponse
impl UnwindSafe for BatchRequestOutputResponse
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