pub struct InvalidatedEventBody {
pub areas: Option<Vec<InvalidatedAreas>>,
pub thread_id: Option<i64>,
pub stack_frame_id: Option<i64>,
}Expand description
Arguments for a Invalidated event
Fields§
§areas: Option<Vec<InvalidatedAreas>>Set of logical areas that got invalidated. This property has a hint
characteristic: a client can only be expected to make a ‘best effort’ in
honouring the areas but there are no guarantees. If this property is
missing, empty, or if values are not understood, the client should assume
a single value all.
thread_id: Option<i64>If specified, the client only needs to refetch data related to this thread.
stack_frame_id: Option<i64>If specified, the client only needs to refetch data related to this stack
frame (and the threadId is ignored).
Trait Implementations§
Source§impl Clone for InvalidatedEventBody
impl Clone for InvalidatedEventBody
Source§fn clone(&self) -> InvalidatedEventBody
fn clone(&self) -> InvalidatedEventBody
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 InvalidatedEventBody
impl Debug for InvalidatedEventBody
Source§impl Default for InvalidatedEventBody
impl Default for InvalidatedEventBody
Source§fn default() -> InvalidatedEventBody
fn default() -> InvalidatedEventBody
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InvalidatedEventBody
impl RefUnwindSafe for InvalidatedEventBody
impl Send for InvalidatedEventBody
impl Sync for InvalidatedEventBody
impl Unpin for InvalidatedEventBody
impl UnsafeUnpin for InvalidatedEventBody
impl UnwindSafe for InvalidatedEventBody
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