Expand description
This crate provides a Pregel implementation for the GraphFrame
data structure.
Structs
- The Pregel struct represents a Pregel computation with various parameters and expressions.
- The
PregelBuilder
struct represents a builder for configuring the Pregel algorithm to be executed on a given graph.
Enums
- This defines an enumeration type
ColumnIdentifier
in Rust. It has several variants:Id
,Src
,Dst
,Edge
,Msg
,Pregel
, andCustom
which takes aString
parameter. This enum can be used to represent different types of columns in a data structure or database table for it to be used in a Pregel program. - This code is defining an enumeration type
MessageReceiver
in Rust with two variants:Src
andDst
. This can be used to represent the source and destination of a message in a Pregel program.