pub struct DisplayEntry {
pub agent_key: String,
pub tool_use_id: String,
pub tool: String,
pub timestamp: SystemTime,
pub headline: String,
pub body: EntryBody,
pub status: EntryStatus,
}Fields§
§agent_key: String§tool_use_id: String§tool: String§timestamp: SystemTime§headline: String§body: EntryBody§status: EntryStatusTrait Implementations§
Source§impl Clone for DisplayEntry
impl Clone for DisplayEntry
Source§fn clone(&self) -> DisplayEntry
fn clone(&self) -> DisplayEntry
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 DisplayEntry
impl Debug for DisplayEntry
Source§impl<'de> Deserialize<'de> for DisplayEntry
impl<'de> Deserialize<'de> for DisplayEntry
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 DisplayEntry
impl RefUnwindSafe for DisplayEntry
impl Send for DisplayEntry
impl Sync for DisplayEntry
impl Unpin for DisplayEntry
impl UnsafeUnpin for DisplayEntry
impl UnwindSafe for DisplayEntry
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