pub enum KeyAccess {
Index(Primitive),
Key(Primitive),
Variable(Value),
FunctionCall {
key: Box<KeyAccess>,
parameters: Value,
},
}
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for KeyAccess
impl<'de> Deserialize<'de> for KeyAccess
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for KeyAccess
Auto Trait Implementations§
impl Freeze for KeyAccess
impl !RefUnwindSafe for KeyAccess
impl Send for KeyAccess
impl Sync for KeyAccess
impl Unpin for KeyAccess
impl !UnwindSafe for KeyAccess
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