pub struct Sites {
pub calls: Vec<(FuncId, Inst)>,
pub ragged: bool,
}Expand description
Where one function is called from.
Fields§
§calls: Vec<(FuncId, Inst)>The caller and the instruction, for every call whose arguments line up.
ragged: boolWhether some call passed a number of arguments the function does not take.
One of those and nothing is claimed about any parameter, because the call is real and what it passed is what cannot be read.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Sites
impl RefUnwindSafe for Sites
impl Send for Sites
impl Sync for Sites
impl Unpin for Sites
impl UnsafeUnpin for Sites
impl UnwindSafe for Sites
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