pub struct PlaceKey {
pub base: PlaceBaseKey,
pub fields: Vec<usize>,
}Expand description
Projection-insensitive enough place key for relevance tracking.
Fields§
§base: PlaceBaseKeyBase local/argument of the place.
fields: Vec<usize>Field projections kept from the contract place.
Implementations§
Source§impl PlaceKey
impl PlaceKey
Sourcepub fn from_mir_place(place: &Place<'_>) -> Self
pub fn from_mir_place(place: &Place<'_>) -> Self
Build a relevance place key from a MIR place.
Sourcepub fn local(&self) -> Option<Local>
pub fn local(&self) -> Option<Local>
Return the MIR local represented by this key when it is already known.
Sourcepub fn from_origin(local: usize, fields: Vec<usize>) -> Self
pub fn from_origin(local: usize, fields: Vec<usize>) -> Self
Build a PlaceKey from an analysis-level (origin_local, fields) tuple.
Source§impl PlaceKey
impl PlaceKey
Sourcepub fn from_contract_place(place: &ContractPlace<'_>) -> Self
pub fn from_contract_place(place: &ContractPlace<'_>) -> Self
Build a relevance place key from a parsed contract place.
Trait Implementations§
impl Eq for PlaceKey
impl StructuralPartialEq for PlaceKey
Auto Trait Implementations§
impl DynSend for PlaceKey
impl DynSync for PlaceKey
impl Freeze for PlaceKey
impl RefUnwindSafe for PlaceKey
impl Send for PlaceKey
impl Sync for PlaceKey
impl Unpin for PlaceKey
impl UnsafeUnpin for PlaceKey
impl UnwindSafe for PlaceKey
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more