[][src]Struct nebula_graph_fbthrift_storage_v2::types::TraverseSpec

pub struct TraverseSpec {
    pub edge_types: Vec<EdgeType>,
    pub edge_direction: EdgeDirection,
    pub dedup: bool,
    pub stat_props: Option<Vec<StatProp>>,
    pub vertex_props: Option<Vec<VertexProp>>,
    pub edge_props: Option<Vec<EdgeProp>>,
    pub expressions: Option<Vec<Expr>>,
    pub order_by: Option<Vec<OrderBy>>,
    pub random: Option<bool>,
    pub limit: Option<i64>,
    pub filter: Option<Vec<u8>>,
}

Fields

edge_types: Vec<EdgeType>edge_direction: EdgeDirectiondedup: boolstat_props: Option<Vec<StatProp>>vertex_props: Option<Vec<VertexProp>>edge_props: Option<Vec<EdgeProp>>expressions: Option<Vec<Expr>>order_by: Option<Vec<OrderBy>>random: Option<bool>limit: Option<i64>filter: Option<Vec<u8>>

Trait Implementations

impl Clone for TraverseSpec[src]

impl Debug for TraverseSpec[src]

impl Default for TraverseSpec[src]

impl<P> Deserialize<P> for TraverseSpec where
    P: ProtocolReader
[src]

impl GetTType for TraverseSpec[src]

impl PartialEq<TraverseSpec> for TraverseSpec[src]

impl Send for TraverseSpec[src]

impl<P> Serialize<P> for TraverseSpec where
    P: ProtocolWriter
[src]

impl StructuralPartialEq for TraverseSpec[src]

impl Sync for TraverseSpec[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.