#[non_exhaustive]pub enum InvalidatedAreas {
All,
Stacks,
Threads,
Variables,
Unknown,
}
Expand description
Logical areas that can be invalidated by the invalidated
event.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future 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.
Unknown
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§fn clone_from(&mut self, source: &Self)
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 Hash for InvalidatedAreas
impl Hash for InvalidatedAreas
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