pub struct QueryNodeTableExpression {
pub sort: Option<Vec<PropertySort>>,
pub limit: Option<i32>,
pub nodes: NodesQuery,
}Expand description
Expression for querying nodes.
Fields§
§sort: Option<Vec<PropertySort>>Sort result set by a list of properties. The order is significant.
limit: Option<i32>Maximum number of nodes to retrieve.
nodes: NodesQueryNode query.
Trait Implementations§
Source§impl Clone for QueryNodeTableExpression
impl Clone for QueryNodeTableExpression
Source§fn clone(&self) -> QueryNodeTableExpression
fn clone(&self) -> QueryNodeTableExpression
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueryNodeTableExpression
impl Debug for QueryNodeTableExpression
Source§impl Default for QueryNodeTableExpression
impl Default for QueryNodeTableExpression
Source§fn default() -> QueryNodeTableExpression
fn default() -> QueryNodeTableExpression
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryNodeTableExpression
impl<'de> Deserialize<'de> for QueryNodeTableExpression
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 QueryNodeTableExpression
impl RefUnwindSafe for QueryNodeTableExpression
impl Send for QueryNodeTableExpression
impl Sync for QueryNodeTableExpression
impl Unpin for QueryNodeTableExpression
impl UnwindSafe for QueryNodeTableExpression
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