errors.fyi community error code reference
E0133
rust

Unsafe Code Outside Block

An unsafe operation such as dereferencing a raw pointer or calling an unsafe function was used outside of an unsafe block or unsafe function. Rust requires such operations to be explicitly enclosed in unsafe to make the potential hazard visible.

References

โ† all namespaces for E0133