pub struct NodeProp {
pub key: SmolStr,
pub key_span: TextRange,
}Expand description
One body property line of a [node …] — key = value (value skipped). The key may be a bare
identifier (an @export var or an engine property) or a group/sub override path.
Fields§
§key: SmolStrThe property key.
key_span: TextRangeByte span of the key.
Trait Implementations§
impl Eq for NodeProp
impl StructuralPartialEq for NodeProp
Auto Trait Implementations§
impl Freeze for NodeProp
impl RefUnwindSafe for NodeProp
impl Send for NodeProp
impl Sync for NodeProp
impl Unpin for NodeProp
impl UnsafeUnpin for NodeProp
impl UnwindSafe for NodeProp
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