Closed davidpdrsn closed 1 year ago
These are the types from std that bevy_reflect supports that we don't. Not sure we have to support all of them but at least worth considering.
Cow<'static, str>
Duration
BTreeSet<T>
Instant
NonZero*
OsString
PathBuf
Range<T>
RangeFrom
RangeFull
RangeInclusive<T>
RangeTo<T>
RangeToInclusive<T>
Result<T, E>
[T; N]
Array
List
These are the types from std that bevy_reflect supports that we don't. Not sure we have to support all of them but at least worth considering.
Cow<'static, str>
Duration
BTreeSet<T>
Instant
NonZero*
OsString
PathBuf
Range<T>
RangeFrom
RangeFull
RangeInclusive<T>
RangeTo<T>
RangeToInclusive<T>
Result<T, E>
[T; N]
- this'll require a newArray
trait sinceList
supports pushing elements which[T; N]
doesn't.