pub struct ChatSessionChatkitConfiguration {
pub automatic_thread_titling: ChatSessionAutomaticThreadTitling,
pub file_upload: ChatSessionFileUpload,
pub history: ChatSessionHistory,
}Expand description
ChatKit configuration for the session.
Fields§
§automatic_thread_titling: ChatSessionAutomaticThreadTitlingAutomatic thread titling preferences.
file_upload: ChatSessionFileUploadUpload settings for the session.
history: ChatSessionHistoryHistory retention configuration.
Trait Implementations§
Source§impl Clone for ChatSessionChatkitConfiguration
impl Clone for ChatSessionChatkitConfiguration
Source§fn clone(&self) -> ChatSessionChatkitConfiguration
fn clone(&self) -> ChatSessionChatkitConfiguration
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<'de> Deserialize<'de> for ChatSessionChatkitConfiguration
impl<'de> Deserialize<'de> for ChatSessionChatkitConfiguration
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
Source§impl PartialEq for ChatSessionChatkitConfiguration
impl PartialEq for ChatSessionChatkitConfiguration
Source§fn eq(&self, other: &ChatSessionChatkitConfiguration) -> bool
fn eq(&self, other: &ChatSessionChatkitConfiguration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChatSessionChatkitConfiguration
Auto Trait Implementations§
impl Freeze for ChatSessionChatkitConfiguration
impl RefUnwindSafe for ChatSessionChatkitConfiguration
impl Send for ChatSessionChatkitConfiguration
impl Sync for ChatSessionChatkitConfiguration
impl Unpin for ChatSessionChatkitConfiguration
impl UnwindSafe for ChatSessionChatkitConfiguration
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