pub struct AgentDisplayPage {
pub messages: Vec<DisplayMessage>,
pub next_cursor: Option<ReplayCursor>,
pub trust: String,
}Expand description
Page of sanitized historical display evidence.
Fields§
§messages: Vec<DisplayMessage>Display-safe messages. Hosts must exclude internal and diagnostic visibility.
next_cursor: Option<ReplayCursor>Cursor after the final returned message.
trust: StringExplicit reminder that historical content is untrusted evidence.
Trait Implementations§
Source§impl Clone for AgentDisplayPage
impl Clone for AgentDisplayPage
Source§fn clone(&self) -> AgentDisplayPage
fn clone(&self) -> AgentDisplayPage
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 AgentDisplayPage
impl Debug for AgentDisplayPage
Source§impl Default for AgentDisplayPage
impl Default for AgentDisplayPage
Source§fn default() -> AgentDisplayPage
fn default() -> AgentDisplayPage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentDisplayPage
impl<'de> Deserialize<'de> for AgentDisplayPage
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
impl Eq for AgentDisplayPage
Source§impl PartialEq for AgentDisplayPage
impl PartialEq for AgentDisplayPage
Source§impl Serialize for AgentDisplayPage
impl Serialize for AgentDisplayPage
impl StructuralPartialEq for AgentDisplayPage
Auto Trait Implementations§
impl Freeze for AgentDisplayPage
impl RefUnwindSafe for AgentDisplayPage
impl Send for AgentDisplayPage
impl Sync for AgentDisplayPage
impl Unpin for AgentDisplayPage
impl UnsafeUnpin for AgentDisplayPage
impl UnwindSafe for AgentDisplayPage
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