pub enum LogEntry {
ParsedLog(ParsedLogEntry),
RawLog(RawLog),
}
Expand description
Type returned when a RegisteredClient polls a server and obtains new interaction logs
Whether or not a raw log or a parsed log is returned depends on the following:
- If the client was built with the “parse logs” option set to true (see ClientBuilder)
- If the logs are able to be parsed (if the logs are unable to be parsed, then the raw logs are returned)
Variants§
ParsedLog(ParsedLogEntry)
RawLog(RawLog)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogEntry
impl RefUnwindSafe for LogEntry
impl Send for LogEntry
impl Sync for LogEntry
impl Unpin for LogEntry
impl UnwindSafe for LogEntry
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