#[non_exhaustive]pub struct NaturalLanguageQueryUnderstandingConfig {
pub mode: Mode,
/* private fields */
}Available on crate feature
data-store-service only.Expand description
Configuration for Natural Language Query Understanding.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.mode: ModeMode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED.
Implementations§
Trait Implementations§
Source§impl Clone for NaturalLanguageQueryUnderstandingConfig
impl Clone for NaturalLanguageQueryUnderstandingConfig
Source§fn clone(&self) -> NaturalLanguageQueryUnderstandingConfig
fn clone(&self) -> NaturalLanguageQueryUnderstandingConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for NaturalLanguageQueryUnderstandingConfig
impl Default for NaturalLanguageQueryUnderstandingConfig
Source§fn default() -> NaturalLanguageQueryUnderstandingConfig
fn default() -> NaturalLanguageQueryUnderstandingConfig
Returns the “default value” for a type. Read more
Source§impl PartialEq for NaturalLanguageQueryUnderstandingConfig
impl PartialEq for NaturalLanguageQueryUnderstandingConfig
Source§fn eq(&self, other: &NaturalLanguageQueryUnderstandingConfig) -> bool
fn eq(&self, other: &NaturalLanguageQueryUnderstandingConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NaturalLanguageQueryUnderstandingConfig
Auto Trait Implementations§
impl Freeze for NaturalLanguageQueryUnderstandingConfig
impl RefUnwindSafe for NaturalLanguageQueryUnderstandingConfig
impl Send for NaturalLanguageQueryUnderstandingConfig
impl Sync for NaturalLanguageQueryUnderstandingConfig
impl Unpin for NaturalLanguageQueryUnderstandingConfig
impl UnsafeUnpin for NaturalLanguageQueryUnderstandingConfig
impl UnwindSafe for NaturalLanguageQueryUnderstandingConfig
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