pub struct ExpressionAnalysis {
pub return_type: VariableType,
pub reads: Vec<ReadDependency>,
pub references: Vec<Reference>,
pub diagnostics: Vec<Diagnostic>,
}Fields§
§return_type: VariableType§reads: Vec<ReadDependency>§references: Vec<Reference>§diagnostics: Vec<Diagnostic>Trait Implementations§
Source§impl Clone for ExpressionAnalysis
impl Clone for ExpressionAnalysis
Source§fn clone(&self) -> ExpressionAnalysis
fn clone(&self) -> ExpressionAnalysis
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 ExpressionAnalysis
impl Debug for ExpressionAnalysis
Auto Trait Implementations§
impl !RefUnwindSafe for ExpressionAnalysis
impl !Send for ExpressionAnalysis
impl !Sync for ExpressionAnalysis
impl !UnwindSafe for ExpressionAnalysis
impl Freeze for ExpressionAnalysis
impl Unpin for ExpressionAnalysis
impl UnsafeUnpin for ExpressionAnalysis
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