Err
Bases: ResultType[T, E]
flowchart TD
pyochain.rs.Err[Err]
pyochain.rs.ResultType[ResultType]
pyochain.rs.Pipe[Pipe]
pyochain.rs.ResultType --> pyochain.rs.Err
pyochain.rs.Pipe --> pyochain.rs.ResultType
click pyochain.rs.Err href "" "pyochain.rs.Err"
click pyochain.rs.ResultType href "" "pyochain.rs.ResultType"
click pyochain.rs.Pipe href "" "pyochain.rs.Pipe"
Represents an error value.
One of the two variants of Result[T, E], where E is the type of the value in Err.
For more documentation, see the ResultType[T, E] Protocol.
Attributes:
| Name | Type | Description |
|---|---|---|
error |
E
|
The contained error value. |