pub struct DiagnosticEvent {
pub lane_id: LaneId,
pub time: Tick,
pub message: String,
}Expand description
A diagnostic message emitted on a lane.
Fields§
§lane_id: LaneIdLane the diagnostic is reported on.
time: TickTime in ticks.
message: StringHuman-readable diagnostic text.
Implementations§
Trait Implementations§
Source§impl Clone for DiagnosticEvent
impl Clone for DiagnosticEvent
Source§fn clone(&self) -> DiagnosticEvent
fn clone(&self) -> DiagnosticEvent
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 DiagnosticEvent
impl Debug for DiagnosticEvent
impl Eq for DiagnosticEvent
Source§impl PartialEq for DiagnosticEvent
impl PartialEq for DiagnosticEvent
impl StructuralPartialEq for DiagnosticEvent
Auto Trait Implementations§
impl Freeze for DiagnosticEvent
impl RefUnwindSafe for DiagnosticEvent
impl Send for DiagnosticEvent
impl Sync for DiagnosticEvent
impl Unpin for DiagnosticEvent
impl UnsafeUnpin for DiagnosticEvent
impl UnwindSafe for DiagnosticEvent
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