pub struct TreeNode {
pub selector: Option<String>,
pub name: Option<String>,
pub derives: HashSet<String>,
pub priority: Option<i32>,
pub attributes: Attributes,
pub properties: HashMap<String, Variant>,
pub rules: Vec<usize>,
pub parent: usize,
}Fields§
§selector: Option<String>§name: Option<String>§derives: HashSet<String>§priority: Option<i32>§attributes: Attributes§properties: HashMap<String, Variant>§rules: Vec<usize>§parent: usizeImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TreeNode
impl RefUnwindSafe for TreeNode
impl Send for TreeNode
impl Sync for TreeNode
impl Unpin for TreeNode
impl UnwindSafe for TreeNode
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