pub struct CallSiteS<F, P> {
pub func: F,
pub location: Location,
pub args: Vec<P>,
pub destination: P,
}Expand description
A callsite, consisting of the call’s location, the arguments and the destination.
Fields§
§func: F§location: Location§args: Vec<P>§destination: PImplementations§
Trait Implementations§
source§impl<F: PartialEq, P: PartialEq> PartialEq for CallSiteS<F, P>
impl<F: PartialEq, P: PartialEq> PartialEq for CallSiteS<F, P>
impl<F: Eq, P: Eq> Eq for CallSiteS<F, P>
impl<F, P> StructuralPartialEq for CallSiteS<F, P>
Auto Trait Implementations§
impl<F, P> RefUnwindSafe for CallSiteS<F, P>where
F: RefUnwindSafe,
P: RefUnwindSafe,
impl<F, P> Send for CallSiteS<F, P>
impl<F, P> Sync for CallSiteS<F, P>
impl<F, P> Unpin for CallSiteS<F, P>
impl<F, P> UnwindSafe for CallSiteS<F, P>where
F: UnwindSafe,
P: UnwindSafe,
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.