mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
add some info from ReflectPathError
to the error messages (#5626)
# Objective - The `Display` impl for `ReflectPathError` is pretty unspecific (e.g. `the current struct doesn't have a field with the given name` - it has info for better messages available ## Solution - make the display impl more descriptive by including values from the type
This commit is contained in:
parent
fe97b384a5
commit
166279e383
1 changed files with 6 additions and 6 deletions
|
@ -6,20 +6,20 @@ use thiserror::Error;
|
|||
/// An error returned from a failed path string query.
|
||||
#[derive(Debug, PartialEq, Eq, Error)]
|
||||
pub enum ReflectPathError<'a> {
|
||||
#[error("expected an identifier at the given index")]
|
||||
#[error("expected an identifier at index {index}")]
|
||||
ExpectedIdent { index: usize },
|
||||
#[error("the current struct doesn't have a field with the given name")]
|
||||
#[error("the current struct doesn't have a field with the name `{field}`")]
|
||||
InvalidField { index: usize, field: &'a str },
|
||||
#[error("the current tuple struct doesn't have a field with the given index")]
|
||||
#[error("the current tuple struct doesn't have a field with the index {tuple_struct_index}")]
|
||||
InvalidTupleStructIndex {
|
||||
index: usize,
|
||||
tuple_struct_index: usize,
|
||||
},
|
||||
#[error("the current list doesn't have a value at the given index")]
|
||||
#[error("the current list doesn't have a value at the index {list_index}")]
|
||||
InvalidListIndex { index: usize, list_index: usize },
|
||||
#[error("encountered an unexpected token")]
|
||||
#[error("encountered an unexpected token `{token}`")]
|
||||
UnexpectedToken { index: usize, token: &'a str },
|
||||
#[error("expected a token, but it wasn't there.")]
|
||||
#[error("expected token `{token}`, but it wasn't there.")]
|
||||
ExpectedToken { index: usize, token: &'a str },
|
||||
#[error("expected a struct, but found a different reflect value")]
|
||||
ExpectedStruct { index: usize },
|
||||
|
|
Loading…
Reference in a new issue