pub enum VariablePresentationHintAttributes {
Static,
Constant,
ReadOnly,
RawString,
HasObjectId,
CanHaveObjectId,
HasSideEffects,
HasDataBreakpoint,
String(String),
}Expand description
Set of attributes represented as an array of Strings. Before introducing additional values, try to use the listed values.
Variants§
Static
Indicates that the object is static.
Constant
Indicates that the object is a constant.
ReadOnly
Indicates that the object is read only.
RawString
Indicates that the object is a raw String.
HasObjectId
Indicates that the object can have an Object ID created for it.
CanHaveObjectId
Indicates that the object has an Object ID associated with it.
HasSideEffects
Indicates that the evaluation had side effects.
HasDataBreakpoint
Indicates that the object has its value tracked by a data breakpoint.
String(String)
Trait Implementations§
Source§impl Clone for VariablePresentationHintAttributes
impl Clone for VariablePresentationHintAttributes
Source§fn clone(&self) -> VariablePresentationHintAttributes
fn clone(&self) -> VariablePresentationHintAttributes
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<'de> Deserialize<'de> for VariablePresentationHintAttributes
impl<'de> Deserialize<'de> for VariablePresentationHintAttributes
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 VariablePresentationHintAttributes
impl RefUnwindSafe for VariablePresentationHintAttributes
impl Send for VariablePresentationHintAttributes
impl Sync for VariablePresentationHintAttributes
impl Unpin for VariablePresentationHintAttributes
impl UnsafeUnpin for VariablePresentationHintAttributes
impl UnwindSafe for VariablePresentationHintAttributes
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