pub type AssignError = Error;👎Deprecated since 0.7.0: renamed to
ErrorExpand 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: ParseIndexErrorThe 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: OutOfBoundsErrorThe source OutOfBoundsError