pub struct IndexExpression {
pub collection: Box<dyn Expression>,
pub element_type: DataType,
pub index: Box<dyn Expression>,
}
Fields§
§collection: Box<dyn Expression>
§element_type: DataType
§index: Box<dyn Expression>
Trait Implementations§
source§impl Expression for IndexExpression
impl Expression for IndexExpression
Auto Trait Implementations§
impl Freeze for IndexExpression
impl !RefUnwindSafe for IndexExpression
impl !Send for IndexExpression
impl !Sync for IndexExpression
impl Unpin for IndexExpression
impl !UnwindSafe for IndexExpression
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