Expand description
Data-related error types.
Structs§
- Data
Overflow - 🚩 The value has surpassed the bounds of the representable data space.
- Element
NotFound - 🚩 The requested element has not been found.
- Index
OutOf Bounds - 🚩 The given index is out of bounds.
- Invalid
Axis Length - 🚩 The given axis has an invalid length.
- KeyAlready
Exists - 🚩 The key already exists.
- Mismatched
Capacity - 🚩 The given capacity did not match the required constraints.
- Mismatched
Dimensions - 🚩 The dimensions given did not match the elements provided.
- Mismatched
Indices - 🚩 The given indices does not match the expected order.
- Node
Empty - 🚩 The node is empty.
- Node
Link NotSet - 🚩 The link is not set.
- Node
Link NotUnique - 🚩 The link is not unique.
- NotEnough
Elements - 🚩 There are not enough elements for the operation.
- NotEnough
Space - 🚩 There is not enough free space for the operation.
- Partially
Added - 🚩 The operation could only add a subset of the elements.
Enums§
- Data
Error error
anddata··
- 🚩+ A data-related composite error.
- Data
NotEnough - 🚩+
An error composite of
NotEnoughElements
+NotEnoughSpace
. - Mismatched
Bounds - 🚩+
An error composite of
DataOverflow
+IndexOutOfBounds
+MismatchedIndices
+MismatchedCapacity
. - Partial
Space - 🚩+
An error composite of
NotEnoughSpace
+PartiallyAdded
.
Type Aliases§
- Data
Result error
anddata··
- ⚖️ A data-related result.