pub struct QueryEdgeTableExpression {
pub sort: Option<Vec<PropertySort>>,
pub post_sort: Option<Vec<PropertySort>>,
pub limit: Option<i32>,
pub edges: EdgesQuery,
}Expand description
Expression for querying edges.
Fields§
§sort: Option<Vec<PropertySort>>Sort result set by a list of properties. The order is significant.
post_sort: Option<Vec<PropertySort>>Sort result set when using recursive graph traversal. The order is significant.
limit: Option<i32>Maximum number of edges to retrieve.
edges: EdgesQueryQuery for edges.
Trait Implementations§
Source§impl Clone for QueryEdgeTableExpression
impl Clone for QueryEdgeTableExpression
Source§fn clone(&self) -> QueryEdgeTableExpression
fn clone(&self) -> QueryEdgeTableExpression
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 QueryEdgeTableExpression
impl Debug for QueryEdgeTableExpression
Source§impl Default for QueryEdgeTableExpression
impl Default for QueryEdgeTableExpression
Source§fn default() -> QueryEdgeTableExpression
fn default() -> QueryEdgeTableExpression
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryEdgeTableExpression
impl<'de> Deserialize<'de> for QueryEdgeTableExpression
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 QueryEdgeTableExpression
impl RefUnwindSafe for QueryEdgeTableExpression
impl Send for QueryEdgeTableExpression
impl Sync for QueryEdgeTableExpression
impl Unpin for QueryEdgeTableExpression
impl UnwindSafe for QueryEdgeTableExpression
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