radix_engine/object_modules/mod.rs
1#![allow(
2 // This lint is allowed since in the implementation of the native blueprints we usually get the
3 // return from the invoked function and then encode it without checking what the type of it is
4 // as a general coding-style. Following this lint actually hurts us instead of helping us, thus
5 // we permit it in the blueprints module.
6 clippy::let_unit_value
7)]
8
9pub mod metadata;
10pub mod role_assignment;
11pub mod royalty;