Add missing fmt::Debug impls

This commit is contained in:
Nikolay Kim 2023-09-12 17:38:37 +06:00
parent 02e111d373
commit 27f07b6fc4
9 changed files with 94 additions and 10 deletions

View file

@ -1,4 +1,9 @@
#![deny(rust_2018_idioms, unreachable_pub)]
#![deny(
rust_2018_idioms,
warnings,
unreachable_pub,
missing_debug_implementations
)]
#![warn(nonstandard_style, future_incompatible)]
//! Resource path matching library.
@ -14,6 +19,7 @@ pub use self::resource::ResourceDef;
pub use self::router::{ResourceId, Router, RouterBuilder};
#[doc(hidden)]
#[derive(Debug)]
pub struct ResourceInfo;
pub trait Resource<T: ResourcePath> {