pub struct AgentSessionCheckpoint {
pub agent_id: AgentId,
pub backend_id: Option<String>,
pub protocol_session_id: Option<String>,
pub session_id: String,
pub status: String,
pub updated_at: u64,
pub resumable: bool,
}Fields§
§agent_id: AgentId§backend_id: Option<String>§protocol_session_id: Option<String>§session_id: String§status: String§updated_at: u64§resumable: boolTrait Implementations§
Source§impl Clone for AgentSessionCheckpoint
impl Clone for AgentSessionCheckpoint
Source§fn clone(&self) -> AgentSessionCheckpoint
fn clone(&self) -> AgentSessionCheckpoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AgentSessionCheckpoint
impl Debug for AgentSessionCheckpoint
Source§impl<'de> Deserialize<'de> for AgentSessionCheckpoint
impl<'de> Deserialize<'de> for AgentSessionCheckpoint
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 Freeze for AgentSessionCheckpoint
impl RefUnwindSafe for AgentSessionCheckpoint
impl Send for AgentSessionCheckpoint
impl Sync for AgentSessionCheckpoint
impl Unpin for AgentSessionCheckpoint
impl UnsafeUnpin for AgentSessionCheckpoint
impl UnwindSafe for AgentSessionCheckpoint
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