pub struct DocumentImageListRequest {
pub key: String,
/* private fields */
}Expand description
Retrieve parsed image index-url mapping for a document (POST, no body)
Fields§
§key: StringBearer API key
Implementations§
Trait Implementations§
Source§impl HttpClient for DocumentImageListRequest
impl HttpClient for DocumentImageListRequest
type Body = ()
type ApiUrl = String
type ApiKey = String
fn api_url(&self) -> &Self::ApiUrl
fn api_key(&self) -> &Self::ApiKey
fn body(&self) -> &Self::Body
Source§fn post(&self) -> impl Future<Output = ZaiResult<Response>> + Send
fn post(&self) -> impl Future<Output = ZaiResult<Response>> + Send
Sends a POST request to the API endpoint. Read more
Source§fn http_config(&self) -> Arc<HttpClientConfig>
fn http_config(&self) -> Arc<HttpClientConfig>
Get HTTP client configuration for this request Read more
Auto Trait Implementations§
impl Freeze for DocumentImageListRequest
impl RefUnwindSafe for DocumentImageListRequest
impl Send for DocumentImageListRequest
impl Sync for DocumentImageListRequest
impl Unpin for DocumentImageListRequest
impl UnsafeUnpin for DocumentImageListRequest
impl UnwindSafe for DocumentImageListRequest
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