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 cb0a53b commit 46f0334Copy full SHA for 46f0334
crates/bevy_asset/src/assets.rs
@@ -726,11 +726,11 @@ pub struct InvalidGenerationError {
726
current_generation: u32,
727
}
728
729
-#[derive(Error, Display, Debug)]
+#[derive(Error, Debug)]
730
pub enum MutableAssetError {
731
- #[display("asset is not present or has an invalid generation")]
+ #[error("asset is not present or has an invalid generation")]
732
Missing,
733
- #[display("asset `Arc` is aliased (there is another `Arc` or `Weak` to this asset), so it is not safe to mutate")]
+ #[error("asset `Arc` is aliased (there is another `Arc` or `Weak` to this asset), so it is not safe to mutate")]
734
Aliased,
735
736
0 commit comments