Module pregel_rs::graph_frame
source · Expand description
This crate provides a graph data structure and a graph frame data structure.
Structs
- The
GraphFrame
type is a struct containing twoDataFrame
fields,vertices
andedges
.
Enums
GraphFrameError
is an enum that represents the different types of errors that can occur when working with aGraphFrame
. It has three variants:DuckDbError
,FromPolars
andMissingColumn
.MissingColumnError
is an enum that represents errors that occur when a required column is missing from a DataFrame. TheDebug
trait allows for easy debugging of the enum by printing its values in a formatted way.