pub struct CfgOutput {
pub cfg: Cfg,
pub warnings: Vec<CompileWarning>,
}Expand description
Output from CFG construction.
Contains the constructed CFG along with any warnings detected during construction (e.g., unreachable code).
Fields§
§cfg: CfgThe constructed control flow graph.
warnings: Vec<CompileWarning>Warnings detected during CFG construction.
Auto Trait Implementations§
impl Freeze for CfgOutput
impl RefUnwindSafe for CfgOutput
impl Send for CfgOutput
impl Sync for CfgOutput
impl Unpin for CfgOutput
impl UnwindSafe for CfgOutput
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