pub struct Query {
pub path: Path,
pub operations: Vec<Operation>,
}Expand description
쿼리 AST (Abstract Syntax Tree)
Fields§
§path: Path경로 접근 (.users[0].name)
operations: Vec<Operation>파이프라인 연산 (| where ...)
Trait Implementations§
impl StructuralPartialEq for Query
Auto Trait Implementations§
impl Freeze for Query
impl RefUnwindSafe for Query
impl Send for Query
impl Sync for Query
impl Unpin for Query
impl UnsafeUnpin for Query
impl UnwindSafe for Query
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