pub struct MetadataIndexResponse {Show 13 fields
pub index_id: Uuid,
pub group_path: String,
pub source_key: String,
pub path: String,
pub data_type: MetadataDataType,
pub value_kind: MetadataValueKind,
pub sortable: bool,
pub status: MetadataIndexStatus,
pub processed_documents: i64,
pub total_documents: i64,
pub error_message: Option<String>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§index_id: Uuid§group_path: String§source_key: String§path: String§data_type: MetadataDataType§value_kind: MetadataValueKind§sortable: bool§status: MetadataIndexStatus§processed_documents: i64§total_documents: i64§error_message: Option<String>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for MetadataIndexResponse
impl Clone for MetadataIndexResponse
Source§fn clone(&self) -> MetadataIndexResponse
fn clone(&self) -> MetadataIndexResponse
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 ComposeSchema for MetadataIndexResponse
impl ComposeSchema for MetadataIndexResponse
Source§impl Debug for MetadataIndexResponse
impl Debug for MetadataIndexResponse
Source§impl<'de> Deserialize<'de> for MetadataIndexResponse
impl<'de> Deserialize<'de> for MetadataIndexResponse
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 JsonSchema for MetadataIndexResponse
impl JsonSchema for MetadataIndexResponse
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl Serialize for MetadataIndexResponse
impl Serialize for MetadataIndexResponse
Auto Trait Implementations§
impl Freeze for MetadataIndexResponse
impl RefUnwindSafe for MetadataIndexResponse
impl Send for MetadataIndexResponse
impl Sync for MetadataIndexResponse
impl Unpin for MetadataIndexResponse
impl UnsafeUnpin for MetadataIndexResponse
impl UnwindSafe for MetadataIndexResponse
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