mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-03 17:52:12 +01:00
Remove #[derive(Debug)]
For some reason, it doesn't allow publishing a new release.
This commit is contained in:
parent
e5d08c168e
commit
d17ebafb38
2 changed files with 1 additions and 2 deletions
|
@ -3,7 +3,6 @@ use crate::{
|
|||
fields_parse::ParserType, rename_rules::RenameRule, Result,
|
||||
};
|
||||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct CommandEnum {
|
||||
pub prefix: String,
|
||||
pub description: Option<String>,
|
||||
|
|
|
@ -3,7 +3,7 @@ use syn::{Fields, FieldsNamed, FieldsUnnamed, Type};
|
|||
|
||||
use crate::{attr::AttrValue, error::Result};
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Clone)]
|
||||
pub(crate) enum ParserType {
|
||||
Default,
|
||||
Split { separator: Option<String> },
|
||||
|
|
Loading…
Reference in a new issue