diff options
author | HampusM <hampus@hampusmat.com> | 2023-08-16 22:02:46 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-08-16 22:02:46 +0200 |
commit | 595806824d41c696b660f40c01914a24e9618f1d (patch) | |
tree | 46dd0509d8bac20392a4297ab6bfb13f2095a584 | |
parent | 9e1edb7c0e1021a02766bd539c151eefc53ee0ef (diff) |
feat: make SomePtr implement Debug
-rw-r--r-- | src/ptr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ macro_rules! create_as_variant_fn { } /// Some smart pointer. -#[derive(strum_macros::IntoStaticStr)] +#[derive(Debug, strum_macros::IntoStaticStr)] pub enum SomePtr<Interface> where Interface: 'static + ?Sized, |