pub struct TransportLogEvent {
pub message: &'static str,
pub fields: BTreeMap<String, String>,
}Expand description
Structured debug event emitted by TransportLogger.
Fields§
§message: &'static strEvent name such as http request or retrying request.
fields: BTreeMap<String, String>Stable event fields.
Trait Implementations§
Source§impl Clone for TransportLogEvent
impl Clone for TransportLogEvent
Source§fn clone(&self) -> TransportLogEvent
fn clone(&self) -> TransportLogEvent
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 moreAuto Trait Implementations§
impl Freeze for TransportLogEvent
impl RefUnwindSafe for TransportLogEvent
impl Send for TransportLogEvent
impl Sync for TransportLogEvent
impl Unpin for TransportLogEvent
impl UnsafeUnpin for TransportLogEvent
impl UnwindSafe for TransportLogEvent
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