#[non_exhaustive]pub struct SuggestionFeature {
pub type: Type,
/* private fields */
}Available on crate features
conversation-profiles or conversations only.Expand description
The type of Human Agent Assistant API suggestion to perform, and the maximum
number of results to return for that type. Multiple Feature objects can
be specified in the features list.
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.type: TypeType of Human Agent Assistant API feature to request.
Implementations§
Trait Implementations§
Source§impl Clone for SuggestionFeature
impl Clone for SuggestionFeature
Source§fn clone(&self) -> SuggestionFeature
fn clone(&self) -> SuggestionFeature
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 Debug for SuggestionFeature
impl Debug for SuggestionFeature
Source§impl Default for SuggestionFeature
impl Default for SuggestionFeature
Source§fn default() -> SuggestionFeature
fn default() -> SuggestionFeature
Returns the “default value” for a type. Read more
Source§impl Message for SuggestionFeature
impl Message for SuggestionFeature
Source§impl PartialEq for SuggestionFeature
impl PartialEq for SuggestionFeature
impl StructuralPartialEq for SuggestionFeature
Auto Trait Implementations§
impl Freeze for SuggestionFeature
impl RefUnwindSafe for SuggestionFeature
impl Send for SuggestionFeature
impl Sync for SuggestionFeature
impl Unpin for SuggestionFeature
impl UnwindSafe for SuggestionFeature
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