Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/errors/src/lib.rs
6592 views
1
//! Definitions of Bevy's error codes that might occur at runtime.
2
//!
3
//! These either manifest as a warning or a panic.
4
5
#[doc = include_str!("../B0001.md")]
6
pub struct B0001;
7
8
#[doc = include_str!("../B0002.md")]
9
pub struct B0002;
10
11
#[doc = include_str!("../B0003.md")]
12
pub struct B0003;
13
14
#[doc = include_str!("../B0004.md")]
15
pub struct B0004;
16
17