Expand description
§Floxide Transform
Transform node abstractions for the floxide framework.
This crate provides the TransformNode
trait and related utilities for working with
transformation-oriented workflow nodes that follow a functional programming approach.
§Key Components
TransformNode
: A trait for nodes that transform input data to output dataTransformContext
: A simple context wrapper for TransformNode inputTransformNodeAdapter
: Adapter to convert a TransformNode to a LifecycleNode- Helper functions for creating and converting transform nodes
§Migration from floxide-async
This crate was previously named floxide-async
and has been renamed to better
reflect its purpose. If you were using floxide-async
, update your imports
from floxide_async
to floxide_transform
.
Structs§
- Transform
Context - Context wrapper for TransformNode
- Transform
Node Adapter - Adapter to convert a TransformNode to a LifecycleNode
Traits§
- Transform
Node - A simplified transform node trait for functional data transformations
Functions§
- create_
transform_ node - Create a transform node from closures using the async syntax
- to_
lifecycle_ node - Convert a TransformNode to a LifecycleNode
- transform_
node - Create a new transform node from closures