pub struct AfterMethodCallAnalysisEvent<'a> {
pub method_id: &'a str,
pub args: &'a [Arg],
pub arg_types: &'a [Type],
pub span: Span,
pub file: &'a str,
pub return_type: &'a mut Type,
pub issues: Vec<PluginIssue>,
}Expand description
Counterpart of Psalm’s AfterMethodCallAnalysisEvent.
Fields§
§method_id: &'a strFully\Qualified\Class::methodname (class as declared, method lowercased).
args: &'a [Arg]§arg_types: &'a [Type]§span: Span§file: &'a str§return_type: &'a mut Type§issues: Vec<PluginIssue>Auto Trait Implementations§
impl<'a> !UnwindSafe for AfterMethodCallAnalysisEvent<'a>
impl<'a> Freeze for AfterMethodCallAnalysisEvent<'a>
impl<'a> RefUnwindSafe for AfterMethodCallAnalysisEvent<'a>
impl<'a> Send for AfterMethodCallAnalysisEvent<'a>
impl<'a> Sync for AfterMethodCallAnalysisEvent<'a>
impl<'a> Unpin for AfterMethodCallAnalysisEvent<'a>
impl<'a> UnsafeUnpin for AfterMethodCallAnalysisEvent<'a>
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