pub struct ChatLogLine {
pub timestamp: Option<PrimitiveDateTime>,
pub event: ChatLogEvent,
}Expand description
represents a Second Life chat log line
Fields§
§timestamp: Option<PrimitiveDateTime>timestamp of the chat log line, some log lines do not have one because of bugs at the time they were written (e.g. some just have the time formatting string)
event: ChatLogEventevent that happened at that time
Trait Implementations§
Source§impl Clone for ChatLogLine
impl Clone for ChatLogLine
Source§fn clone(&self) -> ChatLogLine
fn clone(&self) -> ChatLogLine
Returns a duplicate 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 ChatLogLine
impl Debug for ChatLogLine
Source§impl PartialEq for ChatLogLine
impl PartialEq for ChatLogLine
impl StructuralPartialEq for ChatLogLine
Auto Trait Implementations§
impl Freeze for ChatLogLine
impl RefUnwindSafe for ChatLogLine
impl Send for ChatLogLine
impl Sync for ChatLogLine
impl Unpin for ChatLogLine
impl UnwindSafe for ChatLogLine
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