pub enum ConfigReportKind {
Status,
Effective {
lib: Symbol,
},
Sources,
}Expand description
Config report variants supported by the bootloader.
Variants§
Status
Loaded libraries, sources, probes, and diagnostics.
Effective
Effective config table for one library.
Sources
Source provenance and diagnostics only.
Trait Implementations§
Source§impl Clone for ConfigReportKind
impl Clone for ConfigReportKind
Source§fn clone(&self) -> ConfigReportKind
fn clone(&self) -> ConfigReportKind
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 ConfigReportKind
impl Debug for ConfigReportKind
impl Eq for ConfigReportKind
Source§impl PartialEq for ConfigReportKind
impl PartialEq for ConfigReportKind
impl StructuralPartialEq for ConfigReportKind
Auto Trait Implementations§
impl Freeze for ConfigReportKind
impl RefUnwindSafe for ConfigReportKind
impl Send for ConfigReportKind
impl Sync for ConfigReportKind
impl Unpin for ConfigReportKind
impl UnsafeUnpin for ConfigReportKind
impl UnwindSafe for ConfigReportKind
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