Struct jsonc_parser::ast::ObjectProp [−][src]
pub struct ObjectProp<'a> {
pub range: Range,
pub name: ObjectPropName<'a>,
pub value: Value<'a>,
}
Expand description
Represents an object property (ex. "prop": []
).
Fields
range: Range
name: ObjectPropName<'a>
value: Value<'a>
Trait Implementations
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Gets the line number of the start position in the text.
Gets the start byte position.
Gets the end byte position.
Auto Trait Implementations
impl<'a> RefUnwindSafe for ObjectProp<'a>
impl<'a> Send for ObjectProp<'a>
impl<'a> Sync for ObjectProp<'a>
impl<'a> Unpin for ObjectProp<'a>
impl<'a> UnwindSafe for ObjectProp<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more