pub struct ListSlice {
pub expr: Box<CypherExpr>,
pub start: Option<Box<CypherExpr>>,
pub end: Option<Box<CypherExpr>>,
}Expand description
expr[start..end] slice; either bound may be omitted. Slices are
end-exclusive and support negative offsets.
Fields§
§expr: Box<CypherExpr>§start: Option<Box<CypherExpr>>§end: Option<Box<CypherExpr>>Trait Implementations§
impl StructuralPartialEq for ListSlice
Auto Trait Implementations§
impl Freeze for ListSlice
impl RefUnwindSafe for ListSlice
impl Send for ListSlice
impl Sync for ListSlice
impl Unpin for ListSlice
impl UnsafeUnpin for ListSlice
impl UnwindSafe for ListSlice
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