pub struct CstObject(/* private fields */);
Expand description
Represents an object that may contain properties (ex. {}
, { "prop": 4 }
).
Implementations§
source§impl CstObject
impl CstObject
sourcepub fn parent(&self) -> Option<CstContainerNode>
pub fn parent(&self) -> Option<CstContainerNode>
Parent of the node.
Returns None
if this node has become disconnected from
the tree by being removed.
sourcepub fn ancestors(&self) -> impl Iterator<Item = CstContainerNode>
pub fn ancestors(&self) -> impl Iterator<Item = CstContainerNode>
An iterator of ancestors of this node.
sourcepub fn child_index(&self) -> usize
pub fn child_index(&self) -> usize
Current child index of the node within the children of the parent node.
sourcepub fn previous_sibling(&self) -> Option<CstNode>
pub fn previous_sibling(&self) -> Option<CstNode>
Node that comes before this one that shares the same parent.
sourcepub fn previous_siblings(&self) -> impl Iterator<Item = CstNode>
pub fn previous_siblings(&self) -> impl Iterator<Item = CstNode>
Siblings coming before this node. This does not include cousins.
sourcepub fn next_sibling(&self) -> Option<CstNode>
pub fn next_sibling(&self) -> Option<CstNode>
Node that comes after this one that shares the same parent.
sourcepub fn next_siblings(&self) -> impl Iterator<Item = CstNode>
pub fn next_siblings(&self) -> impl Iterator<Item = CstNode>
Siblings coming after this node. This does not include cousins.
sourcepub fn indent_text(&self) -> Option<String>
pub fn indent_text(&self) -> Option<String>
Returns the indentation text if it can be determined.
sourcepub fn trailing_comma(&self) -> Option<CstToken>
pub fn trailing_comma(&self) -> Option<CstToken>
Gets the trailing comma token of the node, if it exists.
sourcepub fn uses_trailing_commas(&self) -> bool
pub fn uses_trailing_commas(&self) -> bool
Infers if the node or appropriate ancestor uses trailing commas.
sourcepub fn children_exclude_trivia_and_tokens(&self) -> Vec<CstNode>
pub fn children_exclude_trivia_and_tokens(&self) -> Vec<CstNode>
Children of the current node excluding comments, whitespace, newlines, and tokens.
sourcepub fn child_at_index(&self, index: usize) -> Option<CstNode>
pub fn child_at_index(&self, index: usize) -> Option<CstNode>
Gets the child at the specified index.
source§impl CstObject
impl CstObject
sourcepub fn root_node(&self) -> Option<CstRootNode>
pub fn root_node(&self) -> Option<CstRootNode>
Gets the root node.
Returns None
if this node has become disconnected from
the tree by being removed.
sourcepub fn get_array(&self, name: &str) -> Option<CstArray>
pub fn get_array(&self, name: &str) -> Option<CstArray>
Array property by name.
Returns None
if the property doesn’t exist or is not an array.
sourcepub fn get_object(&self, name: &str) -> Option<CstObject>
pub fn get_object(&self, name: &str) -> Option<CstObject>
Object property by name.
Returns None
if the property doesn’t exist or is not an object.
sourcepub fn get(&self, name: &str) -> Option<CstObjectProp>
pub fn get(&self, name: &str) -> Option<CstObjectProp>
Property by name.
Returns None
if the property doesn’t exist.
sourcepub fn properties(&self) -> Vec<CstObjectProp>
pub fn properties(&self) -> Vec<CstObjectProp>
Properties of the object.
sourcepub fn append(&self, prop_name: &str, value: CstInputValue)
pub fn append(&self, prop_name: &str, value: CstInputValue)
Appends a property to the object.
sourcepub fn insert(&self, index: usize, prop_name: &str, value: CstInputValue)
pub fn insert(&self, index: usize, prop_name: &str, value: CstInputValue)
Inserts a property at the specified index.
sourcepub fn replace_with(self, replacement: CstInputValue) -> Option<CstNode>
pub fn replace_with(self, replacement: CstInputValue) -> Option<CstNode>
Replaces this node with a new value.
sourcepub fn set_trailing_commas(&self, mode: TrailingCommaMode)
pub fn set_trailing_commas(&self, mode: TrailingCommaMode)
Ensures this object and all its descendants use trailing commas.
Trait Implementations§
source§impl From<CstObject> for CstContainerNode
impl From<CstObject> for CstContainerNode
Auto Trait Implementations§
impl Freeze for CstObject
impl !RefUnwindSafe for CstObject
impl !Send for CstObject
impl !Sync for CstObject
impl Unpin for CstObject
impl !UnwindSafe for CstObject
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)