pub struct DocumentReembedBody {
pub callback_url: Option<String>,
pub callback_header: Option<BTreeMap<String, String>>,
}Expand description
Request body for re-embedding a document
Fields§
§callback_url: Option<String>Optional callback URL that will be called when re-embedding completes
callback_header: Option<BTreeMap<String, String>>Optional callback headers key-value pairs
Trait Implementations§
Source§impl Clone for DocumentReembedBody
impl Clone for DocumentReembedBody
Source§fn clone(&self) -> DocumentReembedBody
fn clone(&self) -> DocumentReembedBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DocumentReembedBody
impl Debug for DocumentReembedBody
Source§impl Default for DocumentReembedBody
impl Default for DocumentReembedBody
Source§fn default() -> DocumentReembedBody
fn default() -> DocumentReembedBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DocumentReembedBody
impl<'de> Deserialize<'de> for DocumentReembedBody
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
Source§impl Serialize for DocumentReembedBody
impl Serialize for DocumentReembedBody
Source§impl Validate for DocumentReembedBody
impl Validate for DocumentReembedBody
Source§impl<'v_a> ValidateArgs<'v_a> for DocumentReembedBody
impl<'v_a> ValidateArgs<'v_a> for DocumentReembedBody
Auto Trait Implementations§
impl Freeze for DocumentReembedBody
impl RefUnwindSafe for DocumentReembedBody
impl Send for DocumentReembedBody
impl Sync for DocumentReembedBody
impl Unpin for DocumentReembedBody
impl UnsafeUnpin for DocumentReembedBody
impl UnwindSafe for DocumentReembedBody
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