pub struct DocumentDeleteRequest {
pub key: String,
/* private fields */
}Expand description
Document delete request (DELETE /llm-application/open/document/{id})
Fields§
§key: StringBearer API key
Implementations§
Trait Implementations§
Source§impl HttpClient for DocumentDeleteRequest
impl HttpClient for DocumentDeleteRequest
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 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 DocumentDeleteRequest
impl RefUnwindSafe for DocumentDeleteRequest
impl Send for DocumentDeleteRequest
impl Sync for DocumentDeleteRequest
impl Unpin for DocumentDeleteRequest
impl UnsafeUnpin for DocumentDeleteRequest
impl UnwindSafe for DocumentDeleteRequest
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