pub struct SpecializedReadWriteSetState(_);
Expand description
A abstract ReadWriteSetState
that has been (fully or partially) concretized by substituting
concrete values. Represented as a separate type to avoid confusion/comparison with an
overapproximate ReadWriteSet
Implementations§
source§impl SpecializedReadWriteSetState
impl SpecializedReadWriteSetState
sourcepub fn is_statically_known(&self) -> bool
pub fn is_statically_known(&self) -> bool
Return true if self
has no dynamic components and can be converted into a compact
set of concrete access paths
Trait Implementations§
source§impl Clone for SpecializedReadWriteSetState
impl Clone for SpecializedReadWriteSetState
source§fn clone(&self) -> SpecializedReadWriteSetState
fn clone(&self) -> SpecializedReadWriteSetState
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SpecializedReadWriteSetState
impl Debug for SpecializedReadWriteSetState
source§impl PartialEq<SpecializedReadWriteSetState> for SpecializedReadWriteSetState
impl PartialEq<SpecializedReadWriteSetState> for SpecializedReadWriteSetState
source§fn eq(&self, other: &SpecializedReadWriteSetState) -> bool
fn eq(&self, other: &SpecializedReadWriteSetState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<SpecializedReadWriteSetState> for SpecializedReadWriteSetState
impl PartialOrd<SpecializedReadWriteSetState> for SpecializedReadWriteSetState
source§fn partial_cmp(&self, other: &SpecializedReadWriteSetState) -> Option<Ordering>
fn partial_cmp(&self, other: &SpecializedReadWriteSetState) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for SpecializedReadWriteSetState
impl StructuralEq for SpecializedReadWriteSetState
impl StructuralPartialEq for SpecializedReadWriteSetState
Auto Trait Implementations§
impl RefUnwindSafe for SpecializedReadWriteSetState
impl Send for SpecializedReadWriteSetState
impl Sync for SpecializedReadWriteSetState
impl Unpin for SpecializedReadWriteSetState
impl UnwindSafe for SpecializedReadWriteSetState
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.