pub enum ScopePresentationhint {
Arguments,
Locals,
Registers,
String(String),
}Expand description
A hint for how to present this scope in the UI. If this attribute is missing, the scope is shown with a generic UI.
Specification: Scope
Variants§
Arguments
Scope contains method arguments.
Locals
Scope contains local variables.
Registers
Scope contains registers. Only a single registers scope
should be returned from a scopes request.
String(String)
Trait Implementations§
Source§impl Clone for ScopePresentationhint
impl Clone for ScopePresentationhint
Source§fn clone(&self) -> ScopePresentationhint
fn clone(&self) -> ScopePresentationhint
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 ScopePresentationhint
impl Debug for ScopePresentationhint
Source§impl<'de> Deserialize<'de> for ScopePresentationhint
impl<'de> Deserialize<'de> for ScopePresentationhint
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 ScopePresentationhint
impl RefUnwindSafe for ScopePresentationhint
impl Send for ScopePresentationhint
impl Sync for ScopePresentationhint
impl Unpin for ScopePresentationhint
impl UnsafeUnpin for ScopePresentationhint
impl UnwindSafe for ScopePresentationhint
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