We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257173e commit b8db6f7Copy full SHA for b8db6f7
crates/bevy_asset/src/processor/process.rs
@@ -223,6 +223,10 @@ pub trait ErasedProcessor: Send + Sync {
223
) -> BoxedFuture<'a, Result<Box<dyn AssetMetaDyn>, ProcessError>>;
224
/// Type-erased variant of [`Process::reader_required_features`].
225
// Note: This takes &self just to be dyn compatible.
226
+ #[expect(
227
+ clippy::result_large_err,
228
+ reason = "this is only an error here because this isn't a future"
229
+ )]
230
fn reader_required_features(
231
&self,
232
settings: &dyn Settings,
0 commit comments