mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Add missing fmt::Debug impls
This commit is contained in:
parent
02e111d373
commit
27f07b6fc4
9 changed files with 94 additions and 10 deletions
|
@ -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> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue