pub enum InvalidatedAreas {
All,
Stacks,
Threads,
Variables,
}
Expand description
Logical areas that can be invalidated by the ‘invalidated’ event.
Variants§
All
All previously fetched data has become invalid and needs to be refetched.
Stacks
Previously fetched stack related data has become invalid and needs to be refetched.
Threads
Previously fetched thread related data has become invalid and needs to be refetched.
Variables
Previously fetched variable data has become invalid and needs to be refetched.
Trait Implementations§
Source§impl Clone for InvalidatedAreas
impl Clone for InvalidatedAreas
Source§fn clone(&self) -> InvalidatedAreas
fn clone(&self) -> InvalidatedAreas
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InvalidatedAreas
impl Debug for InvalidatedAreas
Source§impl<'de> Deserialize<'de> for InvalidatedAreas
impl<'de> Deserialize<'de> for InvalidatedAreas
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for InvalidatedAreas
impl PartialEq for InvalidatedAreas
Source§impl Serialize for InvalidatedAreas
impl Serialize for InvalidatedAreas
impl Eq for InvalidatedAreas
impl StructuralPartialEq for InvalidatedAreas
Auto Trait Implementations§
impl Freeze for InvalidatedAreas
impl RefUnwindSafe for InvalidatedAreas
impl Send for InvalidatedAreas
impl Sync for InvalidatedAreas
impl Unpin for InvalidatedAreas
impl UnwindSafe for InvalidatedAreas
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.