pub struct GenaiCancelIndexingJobBody {
pub uuid: Option<String>,
}Expand description
CancelKnowledgeBaseIndexingJobInputPublic description
JSON schema
{
"description": "CancelKnowledgeBaseIndexingJobInputPublic description",
"type": "object",
"properties": {
"uuid": {
"description": "A unique identifier for an indexing job.",
"examples": [
"\"12345678-1234-1234-1234-123456789012\""
],
"type": "string"
}
}
}Fields§
§uuid: Option<String>A unique identifier for an indexing job.
Trait Implementations§
Source§impl Clone for GenaiCancelIndexingJobBody
impl Clone for GenaiCancelIndexingJobBody
Source§fn clone(&self) -> GenaiCancelIndexingJobBody
fn clone(&self) -> GenaiCancelIndexingJobBody
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 GenaiCancelIndexingJobBody
impl Debug for GenaiCancelIndexingJobBody
Source§impl Default for GenaiCancelIndexingJobBody
impl Default for GenaiCancelIndexingJobBody
Source§impl<'de> Deserialize<'de> for GenaiCancelIndexingJobBody
impl<'de> Deserialize<'de> for GenaiCancelIndexingJobBody
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 From<&GenaiCancelIndexingJobBody> for GenaiCancelIndexingJobBody
impl From<&GenaiCancelIndexingJobBody> for GenaiCancelIndexingJobBody
Source§fn from(value: &GenaiCancelIndexingJobBody) -> Self
fn from(value: &GenaiCancelIndexingJobBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GenaiCancelIndexingJobBody
impl RefUnwindSafe for GenaiCancelIndexingJobBody
impl Send for GenaiCancelIndexingJobBody
impl Sync for GenaiCancelIndexingJobBody
impl Unpin for GenaiCancelIndexingJobBody
impl UnsafeUnpin for GenaiCancelIndexingJobBody
impl UnwindSafe for GenaiCancelIndexingJobBody
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