pub struct DebugLogEntry {
pub kind: &'static str,
pub name: String,
pub value: String,
}Expand description
Debug log entry for debugLogIRs support. Currently only supports the ‘debug’ variant (string values).
Fields§
§kind: &'static str§name: String§value: StringImplementations§
Trait Implementations§
Source§impl Clone for DebugLogEntry
impl Clone for DebugLogEntry
Source§fn clone(&self) -> DebugLogEntry
fn clone(&self) -> DebugLogEntry
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 DebugLogEntry
impl Debug for DebugLogEntry
Auto Trait Implementations§
impl Freeze for DebugLogEntry
impl RefUnwindSafe for DebugLogEntry
impl Send for DebugLogEntry
impl Sync for DebugLogEntry
impl Unpin for DebugLogEntry
impl UnsafeUnpin for DebugLogEntry
impl UnwindSafe for DebugLogEntry
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