pub type AssignError = Error;
👎Deprecated since 0.7.0: renamed to
Error
Expand description
Alias for Error
- indicates a value assignment failed.
Aliased Type§
pub enum AssignError {
FailedToParseIndex {
position: usize,
offset: usize,
source: ParseIndexError,
},
OutOfBounds {
position: usize,
offset: usize,
source: OutOfBoundsError,
},
}
Variants§
FailedToParseIndex
Fields
§
source: ParseIndexError
The source ParseIndexError
OutOfBounds
A Token
within the Pointer
contains an
Index
which is out of bounds.
The current or resulting array’s length is less than the index.
Fields
§
source: OutOfBoundsError
The source OutOfBoundsError