mirror of
https://github.com/bevyengine/bevy
synced 2024-12-19 09:33:06 +00:00
f77618eccb
# Objective - Some workspace members do not inherit the global lints. ## Solution - Add a `[lints]` entry for all files returned by `rg --files-without-match -F "[lints]" **/Cargo.toml`, except the compile failure tests since these aren't part of the workspace. - Add some docstrings where needed. --------- Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
15 lines
346 B
Rust
15 lines
346 B
Rust
//! Definitions of Bevy's error codes that might occur at runtime.
|
|
//!
|
|
//! These either manifest as a warning or a panic.
|
|
|
|
#[doc = include_str!("../B0001.md")]
|
|
pub struct B0001;
|
|
|
|
#[doc = include_str!("../B0002.md")]
|
|
pub struct B0002;
|
|
|
|
#[doc = include_str!("../B0003.md")]
|
|
pub struct B0003;
|
|
|
|
#[doc = include_str!("../B0004.md")]
|
|
pub struct B0004;
|