pub struct LogCallbackParams {
pub level: LogLevel,
pub message: String,
pub args: Vec<Value>,
pub logger_type: String,
}Fields§
§level: LogLevel§message: String§args: Vec<Value>§logger_type: StringImplementations§
Source§impl LogCallbackParams
impl LogCallbackParams
pub fn level_label(&self) -> &'static str
Trait Implementations§
Source§impl Clone for LogCallbackParams
impl Clone for LogCallbackParams
Source§fn clone(&self) -> LogCallbackParams
fn clone(&self) -> LogCallbackParams
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 moreAuto Trait Implementations§
impl Freeze for LogCallbackParams
impl RefUnwindSafe for LogCallbackParams
impl Send for LogCallbackParams
impl Sync for LogCallbackParams
impl Unpin for LogCallbackParams
impl UnwindSafe for LogCallbackParams
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