pub enum ScriptAccessorPath {
Name(String),
Expression(ScriptExpression),
}Variants§
Name(String)
For the syntax A.B.
Expression(ScriptExpression)
For the syntax A[B] and more complex expression.
Trait Implementations§
Source§impl Debug for ScriptAccessorPath
impl Debug for ScriptAccessorPath
Source§impl PartialEq for ScriptAccessorPath
impl PartialEq for ScriptAccessorPath
impl StructuralPartialEq for ScriptAccessorPath
Auto Trait Implementations§
impl Freeze for ScriptAccessorPath
impl RefUnwindSafe for ScriptAccessorPath
impl Send for ScriptAccessorPath
impl Sync for ScriptAccessorPath
impl Unpin for ScriptAccessorPath
impl UnwindSafe for ScriptAccessorPath
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