pub enum VariableKind {
Property,
Method,
Class,
Data,
Event,
BaseClass,
InnerClass,
Interface,
MostDerivedClass,
Virtual,
DataBreakpoint,
}
Variants§
Property
Indicates that the object is a property.
Method
Indicates that the object is a method.
Class
Indicates that the object is a class.
Data
Indicates that the object is data.
Event
Indicates that the object is an event.
BaseClass
Indicates that the object is a base class.
InnerClass
Indicates that the object is an inner class.
Interface
Indicates that the object is an interface.
MostDerivedClass
Indicates that the object is the most derived class.
Virtual
Indicates that the object is virtual, that means it is a synthetic object introducedby the
adapter for rendering purposes, e.g. an index range for large arrays.
DataBreakpoint
Deprecated: Indicates that a data breakpoint is registered for the object. The ‘hasDataBreakpoint’ attribute should generally be used instead.
Trait Implementations§
Source§impl Clone for VariableKind
impl Clone for VariableKind
Source§fn clone(&self) -> VariableKind
fn clone(&self) -> VariableKind
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VariableKind
impl Debug for VariableKind
Source§impl<'de> Deserialize<'de> for VariableKind
impl<'de> Deserialize<'de> for VariableKind
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 VariableKind
impl PartialEq for VariableKind
Source§impl Serialize for VariableKind
impl Serialize for VariableKind
impl Eq for VariableKind
impl StructuralPartialEq for VariableKind
Auto Trait Implementations§
impl Freeze for VariableKind
impl RefUnwindSafe for VariableKind
impl Send for VariableKind
impl Sync for VariableKind
impl Unpin for VariableKind
impl UnwindSafe for VariableKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.