pub struct DebugInformation {
pub lang_tag: &'static str,
pub id: KernelId,
}Expand description
Extra debugging information about the compiled kernel.
Fields§
§lang_tag: &'static strThe language tag of the source..
id: KernelIdThe compilation id.
Implementations§
Source§impl DebugInformation
impl DebugInformation
Sourcepub fn new(lang_tag: &'static str, id: KernelId) -> DebugInformation
pub fn new(lang_tag: &'static str, id: KernelId) -> DebugInformation
Constructs a new DebugInformation.
Auto Trait Implementations§
impl Freeze for DebugInformation
impl !RefUnwindSafe for DebugInformation
impl Send for DebugInformation
impl Sync for DebugInformation
impl Unpin for DebugInformation
impl !UnwindSafe for DebugInformation
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