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_contract_place(place: &ContractPlace<'_>) -> Self
pub fn from_contract_place(place: &ContractPlace<'_>) -> Self
Build a relevance place key from a parsed contract place.
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.
Trait Implementations§
impl Eq for PlaceKey
impl StructuralPartialEq for PlaceKey
Auto Trait Implementations§
impl Freeze for PlaceKey
impl RefUnwindSafe for PlaceKey
impl Send for PlaceKey
impl Sync for PlaceKey
impl Unpin 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
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