[][src]Struct nebula_graph_fbthrift_storage::types::ScanEdgeRequest

pub struct ScanEdgeRequest {
    pub space_id: GraphSpaceID,
    pub part_id: PartitionID,
    pub cursor: Option<Vec<u8>>,
    pub return_columns: BTreeMap<EdgeType, Vec<PropDef>>,
    pub all_columns: bool,
    pub limit: i32,
    pub start_time: i64,
    pub end_time: i64,
}

Fields

space_id: GraphSpaceIDpart_id: PartitionIDcursor: Option<Vec<u8>>return_columns: BTreeMap<EdgeType, Vec<PropDef>>all_columns: boollimit: i32start_time: i64end_time: i64

Trait Implementations

impl Clone for ScanEdgeRequest[src]

impl Debug for ScanEdgeRequest[src]

impl Default for ScanEdgeRequest[src]

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

impl GetTType for ScanEdgeRequest[src]

impl PartialEq<ScanEdgeRequest> for ScanEdgeRequest[src]

impl Send for ScanEdgeRequest[src]

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

impl StructuralPartialEq for ScanEdgeRequest[src]

impl Sync for ScanEdgeRequest[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.