mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-18 15:20:15 +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,
|
fields_parse::ParserType, rename_rules::RenameRule, Result,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub(crate) struct CommandEnum {
|
pub(crate) struct CommandEnum {
|
||||||
pub prefix: String,
|
pub prefix: String,
|
||||||
pub description: Option<String>,
|
pub description: Option<String>,
|
||||||
|
|
|
@ -3,7 +3,7 @@ use syn::{Fields, FieldsNamed, FieldsUnnamed, Type};
|
||||||
|
|
||||||
use crate::{attr::AttrValue, error::Result};
|
use crate::{attr::AttrValue, error::Result};
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Clone)]
|
||||||
pub(crate) enum ParserType {
|
pub(crate) enum ParserType {
|
||||||
Default,
|
Default,
|
||||||
Split { separator: Option<String> },
|
Split { separator: Option<String> },
|
||||||
|
|
Loading…
Reference in a new issue