#[non_exhaustive]pub struct PausedDetails {
pub location: PausedLocation,
pub title: String,
pub stack: Option<String>,
}Expand description
Details of the currently paused execution, surfaced via the
pausedStateChanged event when the inspector overlay is active.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.location: PausedLocationSource location the engine paused at, when available.
title: StringTitle shown on the overlay (typically the action name).
stack: Option<String>Stack trace as a string, when the server provides one.
Trait Implementations§
Source§impl Clone for PausedDetails
impl Clone for PausedDetails
Source§fn clone(&self) -> PausedDetails
fn clone(&self) -> PausedDetails
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PausedDetails
impl Debug for PausedDetails
impl Eq for PausedDetails
Source§impl PartialEq for PausedDetails
impl PartialEq for PausedDetails
impl StructuralPartialEq for PausedDetails
Auto Trait Implementations§
impl Freeze for PausedDetails
impl RefUnwindSafe for PausedDetails
impl Send for PausedDetails
impl Sync for PausedDetails
impl Unpin for PausedDetails
impl UnsafeUnpin for PausedDetails
impl UnwindSafe for PausedDetails
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