#[non_exhaustive]pub struct FreeFormSuggestion {
pub response: String,
/* private fields */
}Available on crate features
answer-records or conversations or generator-evaluations or generators or participants only.Expand description
Suggestion generated using free form generator.
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.response: StringRequired. Free form suggestion.
Implementations§
Trait Implementations§
Source§impl Clone for FreeFormSuggestion
impl Clone for FreeFormSuggestion
Source§fn clone(&self) -> FreeFormSuggestion
fn clone(&self) -> FreeFormSuggestion
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 FreeFormSuggestion
impl Debug for FreeFormSuggestion
Source§impl Default for FreeFormSuggestion
impl Default for FreeFormSuggestion
Source§fn default() -> FreeFormSuggestion
fn default() -> FreeFormSuggestion
Returns the “default value” for a type. Read more
Source§impl Message for FreeFormSuggestion
impl Message for FreeFormSuggestion
Source§impl PartialEq for FreeFormSuggestion
impl PartialEq for FreeFormSuggestion
impl StructuralPartialEq for FreeFormSuggestion
Auto Trait Implementations§
impl Freeze for FreeFormSuggestion
impl RefUnwindSafe for FreeFormSuggestion
impl Send for FreeFormSuggestion
impl Sync for FreeFormSuggestion
impl Unpin for FreeFormSuggestion
impl UnsafeUnpin for FreeFormSuggestion
impl UnwindSafe for FreeFormSuggestion
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