pub struct ParsedCodexMessage {
pub timestamp: DateTime<Utc>,
pub role: MessageRole,
pub content: String,
}Expand description
Intermediate representation of a parsed Codex message.
Fields§
§timestamp: DateTime<Utc>§role: MessageRole§content: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for ParsedCodexMessage
impl RefUnwindSafe for ParsedCodexMessage
impl Send for ParsedCodexMessage
impl Sync for ParsedCodexMessage
impl Unpin for ParsedCodexMessage
impl UnwindSafe for ParsedCodexMessage
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