pub enum LogPayload {
Sql(SqlLogEntry),
Info(InfoLogEntry),
}Variants§
Sql(SqlLogEntry)
Info(InfoLogEntry)
Trait Implementations§
Source§impl Clone for LogPayload
impl Clone for LogPayload
Source§fn clone(&self) -> LogPayload
fn clone(&self) -> LogPayload
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 LogPayload
impl Debug for LogPayload
Source§impl PartialEq for LogPayload
impl PartialEq for LogPayload
Source§fn eq(&self, other: &LogPayload) -> bool
fn eq(&self, other: &LogPayload) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LogPayload
Auto Trait Implementations§
impl Freeze for LogPayload
impl RefUnwindSafe for LogPayload
impl Send for LogPayload
impl Sync for LogPayload
impl Unpin for LogPayload
impl UnsafeUnpin for LogPayload
impl UnwindSafe for LogPayload
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