1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/// Error types and utilities.
/// Declarative macros for pipeline construction.
/// Pipeline step traits and continuations.
/// Pipeline implementations and helpers.
/// Shared pipeline type aliases.
/// Re-export error types and utilities.
pub use crate*;
/// Re-export pipeline step traits and continuations.
pub use crate*;
/// Re-export pipeline implementations and helpers.
pub use crate*;
/// Re-export shared pipeline type aliases.
pub use crate*;
pub use pipe;
/// Creates a pipeline with an initial value.
///
/// **Parameters**
/// - `passable` - The value that should be processed by the pipeline.
///
/// **Returns**
/// - [`Pipeline`] - A pipeline instance with the provided value set.
/// Creates an asynchronous pipeline with an initial value.
///
/// **Parameters**
/// - `passable` - The value that should be processed by the asynchronous pipeline.
///
/// **Returns**
/// - [`AsyncPipeline`] - An asynchronous pipeline instance with the provided value set.