pub struct GlobalLexicalScopeNamesParams {
pub execution_context_id: Option<ExecutionContextId>,
}Expand description
Returns all let, const and class variables from global scope. globalLexicalScopeNames
Fields§
§execution_context_id: Option<ExecutionContextId>Specifies in which execution context to lookup global scope variables.
Trait Implementations§
Source§impl Clone for GlobalLexicalScopeNamesParams
impl Clone for GlobalLexicalScopeNamesParams
Source§fn clone(&self) -> GlobalLexicalScopeNamesParams
fn clone(&self) -> GlobalLexicalScopeNamesParams
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 Default for GlobalLexicalScopeNamesParams
impl Default for GlobalLexicalScopeNamesParams
Source§fn default() -> GlobalLexicalScopeNamesParams
fn default() -> GlobalLexicalScopeNamesParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GlobalLexicalScopeNamesParams
impl<'de> Deserialize<'de> for GlobalLexicalScopeNamesParams
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 GlobalLexicalScopeNamesParams
impl PartialEq for GlobalLexicalScopeNamesParams
Source§fn eq(&self, other: &GlobalLexicalScopeNamesParams) -> bool
fn eq(&self, other: &GlobalLexicalScopeNamesParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GlobalLexicalScopeNamesParams
Auto Trait Implementations§
impl Freeze for GlobalLexicalScopeNamesParams
impl RefUnwindSafe for GlobalLexicalScopeNamesParams
impl Send for GlobalLexicalScopeNamesParams
impl Sync for GlobalLexicalScopeNamesParams
impl Unpin for GlobalLexicalScopeNamesParams
impl UnsafeUnpin for GlobalLexicalScopeNamesParams
impl UnwindSafe for GlobalLexicalScopeNamesParams
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