pub struct LogMiddleware {
pub log: Mutex<Vec<(String, Value, Value)>>,
}Expand description
Logging middleware — records every call.
Fields§
§log: Mutex<Vec<(String, Value, Value)>>Implementations§
Trait Implementations§
Source§impl Default for LogMiddleware
impl Default for LogMiddleware
Auto Trait Implementations§
impl !Freeze for LogMiddleware
impl RefUnwindSafe for LogMiddleware
impl Send for LogMiddleware
impl Sync for LogMiddleware
impl Unpin for LogMiddleware
impl UnsafeUnpin for LogMiddleware
impl UnwindSafe for LogMiddleware
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