pub struct Breadcrumb {
pub category: String,
pub message: String,
pub level: String,
pub timestamp: String,
pub data: HashMap<String, Value>,
}Expand description
One entry in a trail. Matches the wire shape gems/forge_ops_tracker’s own BreadcrumbBuffer#add already builds, and the same four keys Api::V1::EventsController permits.
Fields§
§category: String§message: String§level: String§timestamp: String§data: HashMap<String, Value>Trait Implementations§
Source§impl Clone for Breadcrumb
impl Clone for Breadcrumb
Source§impl Debug for Breadcrumb
impl Debug for Breadcrumb
Source§impl PartialEq for Breadcrumb
impl PartialEq for Breadcrumb
impl StructuralPartialEq for Breadcrumb
Auto Trait Implementations§
impl Freeze for Breadcrumb
impl RefUnwindSafe for Breadcrumb
impl Send for Breadcrumb
impl Sync for Breadcrumb
impl Unpin for Breadcrumb
impl UnsafeUnpin for Breadcrumb
impl UnwindSafe for Breadcrumb
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