Struct pantry_rs::interface::LLMSessionStatus
source · pub struct LLMSessionStatus {
pub id: Uuid,
pub llm_uuid: Uuid,
pub user_id: Uuid,
pub started: DateTime<Utc>,
pub last_called: DateTime<Utc>,
pub session_parameters: HashMap<String, Value>,
}Expand description
This is a minimal copy of session internals returned with LLMEvent.
Fields§
§id: Uuid§llm_uuid: Uuid§user_id: Uuid§started: DateTime<Utc>§last_called: DateTime<Utc>§session_parameters: HashMap<String, Value>Trait Implementations§
source§impl Clone for LLMSessionStatus
impl Clone for LLMSessionStatus
source§fn clone(&self) -> LLMSessionStatus
fn clone(&self) -> LLMSessionStatus
Returns a copy 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 LLMSessionStatus
impl Debug for LLMSessionStatus
source§impl<'de> Deserialize<'de> for LLMSessionStatus
impl<'de> Deserialize<'de> for LLMSessionStatus
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
Auto Trait Implementations§
impl RefUnwindSafe for LLMSessionStatus
impl Send for LLMSessionStatus
impl Sync for LLMSessionStatus
impl Unpin for LLMSessionStatus
impl UnwindSafe for LLMSessionStatus
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