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
sourceimpl 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
sourceimpl Clone for SpecializedReadWriteSetState
impl Clone for SpecializedReadWriteSetState
sourcefn clone(&self) -> SpecializedReadWriteSetState
fn clone(&self) -> SpecializedReadWriteSetState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SpecializedReadWriteSetState
impl Debug for SpecializedReadWriteSetState
sourceimpl PartialEq<SpecializedReadWriteSetState> for SpecializedReadWriteSetState
impl PartialEq<SpecializedReadWriteSetState> for SpecializedReadWriteSetState
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &SpecializedReadWriteSetState) -> bool
fn ne(&self, other: &SpecializedReadWriteSetState) -> bool
This method tests for !=
.
sourceimpl PartialOrd<SpecializedReadWriteSetState> for SpecializedReadWriteSetState
impl PartialOrd<SpecializedReadWriteSetState> for SpecializedReadWriteSetState
sourcefn partial_cmp(&self, other: &SpecializedReadWriteSetState) -> Option<Ordering>
fn partial_cmp(&self, other: &SpecializedReadWriteSetState) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
impl 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.