mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-24 23:57:38 +01:00
Describe a full path to TransitionOut
This commit is contained in:
parent
17a9b4d3df
commit
a18ef6fc94
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ pub fn bot_dialogue(_attr: TokenStream, item: TokenStream) -> TokenStream {
|
||||||
let input = parse_macro_input!(item as ItemEnum);
|
let input = parse_macro_input!(item as ItemEnum);
|
||||||
let mut dispatch_fn = "".to_owned();
|
let mut dispatch_fn = "".to_owned();
|
||||||
|
|
||||||
write!(dispatch_fn, "impl {} {{ pub async fn dispatch(self, cx: teloxide::dispatching::UpdateWithCx<teloxide::types::Message>) -> TransitionOut<Self> {{ match self {{", input.ident).unwrap();
|
write!(dispatch_fn, "impl {} {{ pub async fn dispatch(self, cx: teloxide::dispatching::UpdateWithCx<teloxide::types::Message>) -> teloxide::dispatching::dialogue::TransitionOut<Self> {{ match self {{", input.ident).unwrap();
|
||||||
|
|
||||||
for variant in input.variants.iter() {
|
for variant in input.variants.iter() {
|
||||||
if let Some(handler) = variant
|
if let Some(handler) = variant
|
||||||
|
|
Loading…
Add table
Reference in a new issue