pub struct GqlQuery {
pub clauses: Vec<QueryClause>,
pub returning: Option<ReturnClause>,
}
Expand description
Main query structure
Fields§
§clauses: Vec<QueryClause>
§returning: Option<ReturnClause>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GqlQuery
impl<'de> Deserialize<'de> for GqlQuery
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
Auto Trait Implementations§
impl Freeze for GqlQuery
impl RefUnwindSafe for GqlQuery
impl Send for GqlQuery
impl Sync for GqlQuery
impl Unpin for GqlQuery
impl UnwindSafe for GqlQuery
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