pub struct AiExtractStructuredFields {
pub key: String,
pub description: Option<String>,
pub display_name: Option<String>,
pub prompt: Option<String>,
pub type: Option<String>,
pub options: Option<Vec<FieldsOptions>>,
pub fields: Option<Vec<AiExtractSubField>>,
pub taxonomy_key: Option<String>,
pub namespace: Option<String>,
pub options_rules: Option<AiOptionsRules>,
}Fields§
§key: String§description: Option<String>§display_name: Option<String>§prompt: Option<String>§type: Option<String>§options: Option<Vec<FieldsOptions>>§fields: Option<Vec<AiExtractSubField>>§taxonomy_key: Option<String>§namespace: Option<String>§options_rules: Option<AiOptionsRules>Trait Implementations§
Source§impl Clone for AiExtractStructuredFields
impl Clone for AiExtractStructuredFields
Source§fn clone(&self) -> AiExtractStructuredFields
fn clone(&self) -> AiExtractStructuredFields
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 AiExtractStructuredFields
impl Debug for AiExtractStructuredFields
Source§impl Default for AiExtractStructuredFields
impl Default for AiExtractStructuredFields
Source§fn default() -> AiExtractStructuredFields
fn default() -> AiExtractStructuredFields
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AiExtractStructuredFields
impl<'de> Deserialize<'de> for AiExtractStructuredFields
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
impl StructuralPartialEq for AiExtractStructuredFields
Auto Trait Implementations§
impl Freeze for AiExtractStructuredFields
impl RefUnwindSafe for AiExtractStructuredFields
impl Send for AiExtractStructuredFields
impl Sync for AiExtractStructuredFields
impl Unpin for AiExtractStructuredFields
impl UnsafeUnpin for AiExtractStructuredFields
impl UnwindSafe for AiExtractStructuredFields
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