Struct jsonc_parser::ast::Object [−][src]
pub struct Object<'a> {
pub range: Range,
pub properties: Vec<ObjectProp<'a>>,
}
Expand description
Represents an object that may contain properties (ex. {}
, { "prop": 4 }
).
Fields
range: Range
properties: Vec<ObjectProp<'a>>
Implementations
Gets a property value in the object by its name.
Gets a string property value from the object by name.
Returns None
when not a string or it doesn’t exist.
Gets a number property value from the object by name.
Returns None
when not a number or it doesn’t exist.
Gets a boolean property value from the object by name.
Returns None
when not a boolean or it doesn’t exist.
Gets an object property value from the object by name.
Returns None
when not an object or it doesn’t exist.
Gets an array property value from the object by name.
Returns None
when not an array or it doesn’t exist.
Takes a value from the object by name.
Returns None
when it doesn’t exist.
Takes a string property value from the object by name.
Returns None
when not a string or it doesn’t exist.
Takes a number property value from the object by name.
Returns None
when not a number or it doesn’t exist.
Takes a boolean property value from the object by name.
Returns None
when not a boolean or it doesn’t exist.
Takes an object property value from the object by name.
Returns None
when not an object or it doesn’t exist.
Takes an array property value from the object by name.
Returns None
when not an array or it doesn’t exist.
Trait Implementations
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 Object<'a>
impl<'a> UnwindSafe for Object<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more