pub enum LocationAccessKind {
FieldIndex(StructTypeRef, usize),
ArrayIndex(ArrayTypeRef, Expression),
ArrayRange(ArrayTypeRef, Range),
StringIndex(Expression),
StringRange(Range),
MapIndex(MapTypeRef, Expression),
MapIndexInsertIfNonExisting(MapTypeRef, Expression),
ExternalTypeIndex(ExternalTypeRef, Expression),
}
Variants§
FieldIndex(StructTypeRef, usize)
ArrayIndex(ArrayTypeRef, Expression)
ArrayRange(ArrayTypeRef, Range)
StringIndex(Expression)
StringRange(Range)
MapIndex(MapTypeRef, Expression)
MapIndexInsertIfNonExisting(MapTypeRef, Expression)
ExternalTypeIndex(ExternalTypeRef, Expression)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LocationAccessKind
impl !RefUnwindSafe for LocationAccessKind
impl !Send for LocationAccessKind
impl !Sync for LocationAccessKind
impl Unpin for LocationAccessKind
impl !UnwindSafe for LocationAccessKind
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