Module error

Source
Expand description

Data-related error types.

Structs§

DataOverflow
🚩 The value has surpassed the bounds of the representable data space.
ElementNotFound
🚩 The requested element has not been found.
IndexOutOfBounds
🚩 The given index is out of bounds.
InvalidAxisLength
🚩 The given axis has an invalid length.
KeyAlreadyExists
🚩 The key already exists.
MismatchedCapacity
🚩 The given capacity did not match the required constraints.
MismatchedDimensions
🚩 The dimensions given did not match the elements provided.
MismatchedIndices
🚩 The given indices does not match the expected order.
NodeEmpty
🚩 The node is empty.
NodeLinkNotSet
🚩 The link is not set.
NodeLinkNotUnique
🚩 The link is not unique.
NotEnoughElements
🚩 There are not enough elements for the operation.
NotEnoughSpace
🚩 There is not enough free space for the operation.
PartiallyAdded
🚩 The operation could only add a subset of the elements.

Enums§

DataErrorerror and data··
🚩+ A data-related composite error.
DataNotEnough
🚩+ An error composite of NotEnoughElements + NotEnoughSpace.
MismatchedBounds
🚩+ An error composite of DataOverflow + IndexOutOfBounds + MismatchedIndices + MismatchedCapacity.
PartialSpace
🚩+ An error composite of NotEnoughSpace + PartiallyAdded.

Type Aliases§

DataResulterror and data··
⚖️ A data-related result.