#[non_exhaustive]pub struct SessionInfo {
pub name: String,
pub query_id: String,
/* private fields */
}Available on crate features
conversational-search-service or search-service only.Expand description
Information about the session.
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.name: StringName of the session. If the auto-session mode is used (when SearchRequest.session ends with “-”), this field holds the newly generated session name.
query_id: StringQuery ID that corresponds to this search API call. One session can have multiple turns, each with a unique query ID.
By specifying the session name and this query ID in the Answer API call, the answer generation happens in the context of the search results from this search call.
Implementations§
Trait Implementations§
Source§impl Clone for SessionInfo
impl Clone for SessionInfo
Source§fn clone(&self) -> SessionInfo
fn clone(&self) -> SessionInfo
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 SessionInfo
impl Debug for SessionInfo
Source§impl Default for SessionInfo
impl Default for SessionInfo
Source§fn default() -> SessionInfo
fn default() -> SessionInfo
Returns the “default value” for a type. Read more
Source§impl Message for SessionInfo
impl Message for SessionInfo
Source§impl PartialEq for SessionInfo
impl PartialEq for SessionInfo
impl StructuralPartialEq for SessionInfo
Auto Trait Implementations§
impl Freeze for SessionInfo
impl RefUnwindSafe for SessionInfo
impl Send for SessionInfo
impl Sync for SessionInfo
impl Unpin for SessionInfo
impl UnwindSafe for SessionInfo
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