pub struct Scope {
pub type_: String,
pub object: RemoteObject,
pub name: Option<String>,
pub startLocation: Option<Location>,
pub endLocation: Option<Location>,
}Expand description
Scope description.
Fields§
§type_: StringScope type.
object: RemoteObjectObject representing the scope. For ‘global’ and ‘with’ scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties.
name: Option<String>§startLocation: Option<Location>Location in the source code where scope starts
endLocation: Option<Location>Location in the source code where scope ends
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Scope
impl<'de> Deserialize<'de> for Scope
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
Auto Trait Implementations§
impl Freeze for Scope
impl RefUnwindSafe for Scope
impl Send for Scope
impl Sync for Scope
impl Unpin for Scope
impl UnsafeUnpin for Scope
impl UnwindSafe for Scope
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