pub struct DebugVariable {
pub indexedVariables: i32,
pub name: &'static str,
pub namedVariables: i32,
pub presentationHint: LuaAny,
pub type: &'static str,
pub value: &'static str,
pub variablesReference: i32,
}Expand description
The supported subset of DebugAdapter Variable
Fields§
§indexedVariables: i32§name: &'static str§namedVariables: i32§presentationHint: LuaAny§type: &'static str§value: &'static str§variablesReference: i32Trait Implementations§
Source§impl Clone for DebugVariable
impl Clone for DebugVariable
Source§fn clone(&self) -> DebugVariable
fn clone(&self) -> DebugVariable
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 moreimpl Copy for DebugVariable
Source§impl Debug for DebugVariable
impl Debug for DebugVariable
Source§impl Default for DebugVariable
impl Default for DebugVariable
Source§fn default() -> DebugVariable
fn default() -> DebugVariable
Returns the “default value” for a type. Read more
Source§impl PartialEq for DebugVariable
impl PartialEq for DebugVariable
impl StructuralPartialEq for DebugVariable
Auto Trait Implementations§
impl Freeze for DebugVariable
impl RefUnwindSafe for DebugVariable
impl Send for DebugVariable
impl Sync for DebugVariable
impl Unpin for DebugVariable
impl UnsafeUnpin for DebugVariable
impl UnwindSafe for DebugVariable
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