pub struct PostCompilationResult {
pub validation_report: ValidationReport,
pub is_valid: bool,
pub optimizations_applied: usize,
pub messages: Vec<String>,
}Expand description
Result of post-compilation passes.
Fields§
§validation_report: ValidationReportValidation report
is_valid: boolWhether the graph passed all checks
optimizations_applied: usizeNumber of optimizations applied
messages: Vec<String>Detailed messages
Trait Implementations§
Source§impl Clone for PostCompilationResult
impl Clone for PostCompilationResult
Source§fn clone(&self) -> PostCompilationResult
fn clone(&self) -> PostCompilationResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PostCompilationResult
impl RefUnwindSafe for PostCompilationResult
impl Send for PostCompilationResult
impl Sync for PostCompilationResult
impl Unpin for PostCompilationResult
impl UnwindSafe for PostCompilationResult
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