telegram-bot icon indicating copy to clipboard operation
telegram-bot copied to clipboard

stack overflow caused by reply keyboard usage

Open demonov opened this issue 7 years ago • 4 comments

I've modified a basic example, adding the reply keyboard to the message:

    let future = api.stream().for_each(|update| {
        if let UpdateKind::Message(message) = update.kind {
            if let MessageKind::Text { ref data, .. } = message.kind {
                let text = format!("Hi, {}! You just wrote '{}'", &message.from.first_name, data);
                let mut message = message.text_reply(text);
                message.reply_markup(reply_markup!(inline_keyboard, ["foo" callback "bar", "baz" callback "quux"]));
                api.spawn(message);
            }
        }
        Ok(())
    });

This causes stack overflow after I click any button on the keyboard:

thread 'main' has overflowed its stack
error: process didn't exit successfully: `target\debug\reminder.exe` (exit code: 255)

demonov avatar Jun 20 '18 20:06 demonov

I can't reproduce it unfortunately. Can you please provide a call stack?

knsd avatar Jun 20 '18 21:06 knsd

There is a stacktrace I have in my crashdump file:

0:000> k
Child-SP          RetAddr           Call Site
000000f1`36ceba08 00007ff7`6d14775b reminder!__chkstk+0x38
000000f1`36ceba20 00007ff7`6d0294bf reminder!telegram_bot_raw::types::message::{{impl}}::deserialize<mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0xb [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\message.rs @ 454]
000000f1`36ceba30 00007ff7`6d02c0b9 reminder!serde::de::impls::{{impl}}::deserialize<telegram_bot_raw::types::message::MessageOrChannelPost,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x2f [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\impls.rs @ 580]
000000f1`36cec2d0 00007ff7`6d104f88 reminder!serde::de::impls::{{impl}}::visit_some<alloc::boxed::Box<telegram_bot_raw::types::message::MessageOrChannelPost>,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x29 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\impls.rs @ 626]
000000f1`36cec330 00007ff7`6d086bbe reminder!serde_json::de::{{impl}}::deserialize_option<serde_json::read::SliceRead,serde::de::impls::OptionVisitor<alloc::boxed::Box<telegram_bot_raw::types::message::MessageOrChannelPost>>>+0xd8 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1367]
000000f1`36cec3f0 00007ff7`6d04854e reminder!serde::de::impls::{{impl}}::deserialize<alloc::boxed::Box<telegram_bot_raw::types::message::MessageOrChannelPost>,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\impls.rs @ 649]
000000f1`36cec440 00007ff7`6d0eddb1 reminder!serde::de::{{impl}}::deserialize<core::option::Option<alloc::boxed::Box<telegram_bot_raw::types::message::MessageOrChannelPost>>,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\mod.rs @ 783]
000000f1`36cec490 00007ff7`6d11b53e reminder!serde_json::de::{{impl}}::next_value_seed<serde_json::read::SliceRead,core::marker::PhantomData<core::option::Option<alloc::boxed::Box<telegram_bot_raw::types::message::MessageOrChannelPost>>>>+0xd1 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1725]
000000f1`36cec510 00007ff7`6d161cd8 reminder!serde::de::MapAccess::next_value<serde_json::de::MapAccess<serde_json::read::SliceRead>,core::option::Option<alloc::boxed::Box<telegram_bot_raw::types::message::MessageOrChannelPost>>>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\mod.rs @ 1841]
000000f1`36cec550 00007ff7`6d114428 reminder!telegram_bot_raw::types::message::_IMPL_DESERIALIZE_FOR_RawMessage::{{impl}}::deserialize::{{impl}}::visit_map<serde_json::de::MapAccess<serde_json::read::SliceRead>>+0x1308 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\message.rs @ 474]
000000f1`36cf3cd0 00007ff7`6d14806e reminder!serde_json::de::{{impl}}::deserialize_struct<serde_json::read::SliceRead,telegram_bot_raw::types::message::_IMPL_DESERIALIZE_FOR_RawMessage::{{impl}}::deserialize::__Visitor>+0x688 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1546]
000000f1`36cf9880 00007ff7`6d176a4e reminder!telegram_bot_raw::types::message::_IMPL_DESERIALIZE_FOR_RawMessage::{{impl}}::deserialize<mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x4e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\message.rs @ 474]
000000f1`36cf98f0 00007ff7`6d0486ce reminder!telegram_bot_raw::types::message::{{impl}}::deserialize<mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x4e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\message.rs @ 325]
000000f1`36cfcb20 00007ff7`6d0edb71 reminder!serde::de::{{impl}}::deserialize<telegram_bot_raw::types::message::Message,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\mod.rs @ 783]
000000f1`36cfcb70 00007ff7`6d11b80e reminder!serde_json::de::{{impl}}::next_value_seed<serde_json::read::SliceRead,core::marker::PhantomData<telegram_bot_raw::types::message::Message>>+0xd1 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1725]
000000f1`36cfcbf0 00007ff7`6d0a5613 reminder!serde::de::MapAccess::next_value<serde_json::de::MapAccess<serde_json::read::SliceRead>,telegram_bot_raw::types::message::Message>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\mod.rs @ 1841]
000000f1`36cfcc30 00007ff7`6d111802 reminder!telegram_bot_raw::types::callback_query::_IMPL_DESERIALIZE_FOR_CallbackQuery::{{impl}}::deserialize::{{impl}}::visit_map<serde_json::de::MapAccess<serde_json::read::SliceRead>>+0x673 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\callback_query.rs @ 4]
000000f1`36d04ce0 00007ff7`6d0a4dee reminder!serde_json::de::{{impl}}::deserialize_struct<serde_json::read::SliceRead,telegram_bot_raw::types::callback_query::_IMPL_DESERIALIZE_FOR_CallbackQuery::{{impl}}::deserialize::__Visitor>+0x682 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1546]
000000f1`36d0c2f0 00007ff7`6d02c33f reminder!telegram_bot_raw::types::callback_query::_IMPL_DESERIALIZE_FOR_CallbackQuery::{{impl}}::deserialize<mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x4e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\callback_query.rs @ 4]
000000f1`36d0c360 00007ff7`6d1039a8 reminder!serde::de::impls::{{impl}}::visit_some<telegram_bot_raw::types::callback_query::CallbackQuery,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x2f [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\impls.rs @ 626]
000000f1`36d0cca0 00007ff7`6d0867fe reminder!serde_json::de::{{impl}}::deserialize_option<serde_json::read::SliceRead,serde::de::impls::OptionVisitor<telegram_bot_raw::types::callback_query::CallbackQuery>>+0xd8 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1367]
000000f1`36d0cd60 00007ff7`6d0485ae reminder!serde::de::impls::{{impl}}::deserialize<telegram_bot_raw::types::callback_query::CallbackQuery,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\impls.rs @ 649]
000000f1`36d0cdb0 00007ff7`6d0ee471 reminder!serde::de::{{impl}}::deserialize<core::option::Option<telegram_bot_raw::types::callback_query::CallbackQuery>,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\mod.rs @ 783]
000000f1`36d0ce00 00007ff7`6d11b44e reminder!serde_json::de::{{impl}}::next_value_seed<serde_json::read::SliceRead,core::marker::PhantomData<core::option::Option<telegram_bot_raw::types::callback_query::CallbackQuery>>>+0xd1 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1725]
000000f1`36d0ce80 00007ff7`6d02238a reminder!serde::de::MapAccess::next_value<serde_json::de::MapAccess<serde_json::read::SliceRead>,core::option::Option<telegram_bot_raw::types::callback_query::CallbackQuery>>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\mod.rs @ 1841]
000000f1`36d0cec0 00007ff7`6d112678 reminder!telegram_bot_raw::types::update::_IMPL_DESERIALIZE_FOR_RawUpdate::{{impl}}::deserialize::{{impl}}::visit_map<serde_json::de::MapAccess<serde_json::read::SliceRead>>+0xa9a [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\update.rs @ 65]
000000f1`36d31000 00007ff7`6d01fabe reminder!serde_json::de::{{impl}}::deserialize_struct<serde_json::read::SliceRead,telegram_bot_raw::types::update::_IMPL_DESERIALIZE_FOR_RawUpdate::{{impl}}::deserialize::__Visitor>+0x688 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1546]
000000f1`36d52410 00007ff7`6d02c88c reminder!telegram_bot_raw::types::update::_IMPL_DESERIALIZE_FOR_RawUpdate::{{impl}}::deserialize<mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x4e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\update.rs @ 65]
000000f1`36d52480 00007ff7`6d048b4e reminder!telegram_bot_raw::types::update::{{impl}}::deserialize<mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x7c [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\update.rs @ 37]
000000f1`36d855b0 00007ff7`6d0f5ce6 reminder!serde::de::{{impl}}::deserialize<telegram_bot_raw::types::update::Update,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\mod.rs @ 783]
000000f1`36d85600 00007ff7`6d11befe reminder!serde_json::de::{{impl}}::next_element_seed<serde_json::read::SliceRead,core::marker::PhantomData<telegram_bot_raw::types::update::Update>>+0x3b6 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1663]
000000f1`36d94ca0 00007ff7`6d02131d reminder!serde::de::SeqAccess::next_element<serde_json::de::SeqAccess<serde_json::read::SliceRead>,telegram_bot_raw::types::update::Update>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\mod.rs @ 1702]
000000f1`36d94ce0 00007ff7`6d10064a reminder!serde::de::impls::{{impl}}::deserialize::{{impl}}::visit_seq<telegram_bot_raw::types::update::Update,serde_json::de::SeqAccess<serde_json::read::SliceRead>>+0x8d [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\impls.rs @ 736]
000000f1`36da42e0 00007ff7`6d1253de reminder!serde_json::de::{{impl}}::deserialize_seq<serde_json::read::SliceRead,serde::de::impls::{{impl}}::deserialize::SeqVisitor<telegram_bot_raw::types::update::Update>>+0x27a [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1432]
000000f1`36da4530 00007ff7`6d02c189 reminder!serde::de::impls::{{impl}}::deserialize<telegram_bot_raw::types::update::Update,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\impls.rs @ 746]
000000f1`36da4580 00007ff7`6d104b28 reminder!serde::de::impls::{{impl}}::visit_some<alloc::vec::Vec<telegram_bot_raw::types::update::Update>,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x29 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\impls.rs @ 626]
000000f1`36da45f0 00007ff7`6d086a0e reminder!serde_json::de::{{impl}}::deserialize_option<serde_json::read::SliceRead,serde::de::impls::OptionVisitor<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>>+0xd8 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1367]
000000f1`36da46b0 00007ff7`6d048abe reminder!serde::de::impls::{{impl}}::deserialize<alloc::vec::Vec<telegram_bot_raw::types::update::Update>,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\impls.rs @ 649]
000000f1`36da4700 00007ff7`6d0ebf91 reminder!serde::de::{{impl}}::deserialize<core::option::Option<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\mod.rs @ 783]
000000f1`36da4750 00007ff7`6d11b4ae reminder!serde_json::de::{{impl}}::next_value_seed<serde_json::read::SliceRead,core::marker::PhantomData<core::option::Option<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>>>+0xd1 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1725]
000000f1`36da47d0 00007ff7`6d038b93 reminder!serde::de::MapAccess::next_value<serde_json::de::MapAccess<serde_json::read::SliceRead>,core::option::Option<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde-1.0.66\src\de\mod.rs @ 1841]
000000f1`36da4810 00007ff7`6d1152f1 reminder!telegram_bot_raw::types::response_parameters::_IMPL_DESERIALIZE_FOR_RawResponse::{{impl}}::deserialize::{{impl}}::visit_map<alloc::vec::Vec<telegram_bot_raw::types::update::Update>,serde_json::de::MapAccess<serde_json::read::SliceRead>>+0x4d3 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\response_parameters.rs @ 41]
000000f1`36da4f20 00007ff7`6d03153e reminder!serde_json::de::{{impl}}::deserialize_struct<serde_json::read::SliceRead,telegram_bot_raw::types::response_parameters::_IMPL_DESERIALIZE_FOR_RawResponse::{{impl}}::deserialize::__Visitor<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>>+0x6d1 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 1546]
000000f1`36da5640 00007ff7`6d030bc6 reminder!telegram_bot_raw::types::response_parameters::_IMPL_DESERIALIZE_FOR_RawResponse::{{impl}}::deserialize<alloc::vec::Vec<telegram_bot_raw::types::update::Update>,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x4e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\response_parameters.rs @ 41]
000000f1`36da56b0 00007ff7`6d0fe5fc reminder!telegram_bot_raw::types::response_parameters::{{impl}}::deserialize<alloc::vec::Vec<telegram_bot_raw::types::update::Update>,mut serde_json::de::Deserializer<serde_json::read::SliceRead>*>+0x56 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\types\response_parameters.rs @ 26]
000000f1`36da5ab0 00007ff7`6d0fe58e reminder!serde_json::de::from_trait<serde_json::read::SliceRead,telegram_bot_raw::types::response_parameters::ResponseWrapper<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>>+0x5c [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 2110]
000000f1`36da5d20 00007ff7`6d01fb9f reminder!serde_json::de::from_slice<telegram_bot_raw::types::response_parameters::ResponseWrapper<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>>+0x3e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\serde_json-1.0.20\src\de.rs @ 2213]
000000f1`36da5d90 00007ff7`6d065135 reminder!telegram_bot_raw::requests::_base::response_types::json::{{impl}}::deserialize<telegram_bot_raw::requests::_base::response_types::json::JsonIdResponse<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>>+0xcf [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-raw-0.6.1\src\requests\_base\response_types\json.rs @ 43]
000000f1`36da6230 00007ff7`6d13c543 reminder!telegram_bot::api::{{impl}}::send::{{closure}}<mut telegram_bot_raw::requests::get_updates::GetUpdates*>+0x45 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-0.6.1\src\api.rs @ 259]
000000f1`36da62f0 00007ff7`6d095ae8 reminder!futures::future::and_then::{{impl}}::poll::{{closure}}::{{closure}}<futures::future::and_then::AndThen<futures::future::result_::FutureResult<telegram_bot_raw::requests::_base::http::HttpRequest, telegram_bot::errors::Error>, telegram_bot::future::TelegramFuture<telegram_bot_raw::requests::_base::http::HttpResponse>, closure>,core::result::Result<alloc::vec::Vec<telegram_bot_raw::types::update::Update>, telegram_bot::errors::Error>,closure>+0x83 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\and_then.rs @ 34]
000000f1`36da6450 00007ff7`6d13bb17 reminder!core::result::Result<telegram_bot_raw::requests::_base::http::HttpResponse, telegram_bot::errors::Error>::map<telegram_bot_raw::requests::_base::http::HttpResponse,telegram_bot::errors::Error,core::result::Result<alloc::vec::Vec<telegram_bot_raw::types::update::Update>, futures::future::result_::FutureResult<alloc::vec::Vec<telegram_bot_raw::types::update::Update>, telegram_bot::errors::Error>>,closure>+0xd8 [C:\projects\rust\src\libcore\result.rs @ 468]
000000f1`36da6670 00007ff7`6d05b03e reminder!futures::future::and_then::{{impl}}::poll::{{closure}}<futures::future::and_then::AndThen<futures::future::result_::FutureResult<telegram_bot_raw::requests::_base::http::HttpRequest, telegram_bot::errors::Error>, telegram_bot::future::TelegramFuture<telegram_bot_raw::requests::_base::http::HttpResponse>, closure>,core::result::Result<alloc::vec::Vec<telegram_bot_raw::types::update::Update>, telegram_bot::errors::Error>,closure>+0x47 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\and_then.rs @ 36]
000000f1`36da6740 00007ff7`6d13b77e reminder!futures::future::chain::Chain<futures::future::and_then::AndThen<futures::future::result_::FutureResult<telegram_bot_raw::requests::_base::http::HttpRequest, telegram_bot::errors::Error>, telegram_bot::future::TelegramFuture<telegram_bot_raw::requests::_base::http::HttpResponse>, closure>, futures::future::result_::FutureResult<alloc::vec::Vec<telegram_bot_raw::types::update::Update>, telegram_bot::errors::Error>, closure>::poll<futures::future::and_then::AndThen<futures::future::result_::FutureResult<telegram_bot_raw::requests::_base::http::HttpRequest, telegram_bot::errors::Error>, telegram_bot::future::TelegramFuture<telegram_bot_raw::requests::_base::http::HttpResponse>, closure>,futures::future::result_::FutureResult<alloc::vec::Vec<telegram_bot_raw::types::update::Update>, telegram_bot::errors::Error>,closure,closure>+0x9de [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\chain.rs @ 39]
000000f1`36da71f0 00007ff7`6d02a23f reminder!futures::future::and_then::{{impl}}::poll<futures::future::and_then::AndThen<futures::future::result_::FutureResult<telegram_bot_raw::requests::_base::http::HttpRequest, telegram_bot::errors::Error>, telegram_bot::future::TelegramFuture<telegram_bot_raw::requests::_base::http::HttpResponse>, closure>,core::result::Result<alloc::vec::Vec<telegram_bot_raw::types::update::Update>, telegram_bot::errors::Error>,closure>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\and_then.rs @ 37]
000000f1`36da7230 00007ff7`6d04922e reminder!futures::future::{{impl}}::poll<Future>+0x2f [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\mod.rs @ 114]
000000f1`36da7280 00007ff7`6d0603b4 reminder!telegram_bot::future::{{impl}}::poll<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-0.6.1\src\future.rs @ 29]
000000f1`36da72c0 00007ff7`6d0c779e reminder!futures::future::map::{{impl}}::poll<core::option::Option<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>,telegram_bot::future::TelegramFuture<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>,closure>+0x64 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\map.rs @ 31]
000000f1`36da7620 00007ff7`6d05ff97 reminder!futures::future::select::{{impl}}::poll<futures::future::map::Map<futures::future::map_err::MapErr<futures::future::flatten::Flatten<futures::future::result_::FutureResult<tokio_core::reactor::timeout::Timeout, std::io::error::Error>>, fn(std::io::error::Error) -> telegram_bot::errors::Error>, closure>,futures::future::map::Map<telegram_bot::future::TelegramFuture<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>, closure>>+0x21e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\select.rs @ 52]
000000f1`36da8210 00007ff7`6d13ad44 reminder!futures::future::map::{{impl}}::poll<core::option::Option<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>,futures::future::select::Select<futures::future::map::Map<futures::future::map_err::MapErr<futures::future::flatten::Flatten<futures::future::result_::FutureResult<tokio_core::reactor::timeout::Timeout, std::io::error::Error>>, fn(std::io::error::Error) -> telegram_bot::errors::Error>, closure>, futures::future::map::Map<telegram_bot::future::TelegramFuture<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>, closure>>,closure>+0x67 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\map.rs @ 31]
000000f1`36da8760 00007ff7`6d02a33f reminder!futures::future::map_err::{{impl}}::poll<telegram_bot::errors::Error,futures::future::map::Map<futures::future::select::Select<futures::future::map::Map<futures::future::map_err::MapErr<futures::future::flatten::Flatten<futures::future::result_::FutureResult<tokio_core::reactor::timeout::Timeout, std::io::error::Error>>, fn(std::io::error::Error) -> telegram_bot::errors::Error>, closure>, futures::future::map::Map<telegram_bot::future::TelegramFuture<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>, closure>>, closure>,closure>+0x44 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\map_err.rs @ 31]
000000f1`36da8b40 00007ff7`6d0491fe reminder!futures::future::{{impl}}::poll<Future>+0x2f [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\mod.rs @ 114]
000000f1`36da8b90 00007ff7`6d0494be reminder!telegram_bot::future::{{impl}}::poll<core::option::Option<alloc::vec::Vec<telegram_bot_raw::types::update::Update>>>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-0.6.1\src\future.rs @ 29]
000000f1`36da8bd0 00007ff7`6cf6c9a2 reminder!telegram_bot::stream::{{impl}}::poll+0x27e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\telegram-bot-0.6.1\src\stream.rs @ 45]
000000f1`36dca4b0 00007ff7`6d01e43e reminder!futures::stream::for_each::{{impl}}::poll<telegram_bot::stream::UpdatesStream,closure,core::result::Result<(), telegram_bot::errors::Error>>+0x832 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\poll.rs @ 8]
000000f1`36ddc960 00007ff7`6d01e871 reminder!futures::task_impl::{{impl}}::poll_future_notify::{{closure}}<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>,alloc::arc::Arc<tokio_core::reactor::MyNotify>>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\task_impl\mod.rs @ 289]
000000f1`36ddc9b0 00007ff7`6d01866b reminder!futures::task_impl::{{impl}}::enter::{{closure}}<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x31 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\task_impl\mod.rs @ 363]
000000f1`36ddca00 00007ff7`6d01e677 reminder!futures::task_impl::std::set<closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0xcb [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\task_impl\std\mod.rs @ 78]
000000f1`36ddcaa0 00007ff7`6d01e25b reminder!futures::task_impl::Spawn<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>>::enter<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0xb7 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\task_impl\mod.rs @ 363]
000000f1`36ddcb80 00007ff7`6cf8ccdc reminder!futures::task_impl::Spawn<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>>::poll_future_notify<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>,alloc::arc::Arc<tokio_core::reactor::MyNotify>>+0x6b [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\task_impl\mod.rs @ 290]
000000f1`36ddcc20 00007ff7`6cf61119 reminder!tokio_core::reactor::{{impl}}::run::{{closure}}::{{closure}}::{{closure}}::{{closure}}::{{closure}}<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>>+0x4c [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-core-0.1.17\src\reactor\mod.rs @ 236]
000000f1`36ddccf0 00007ff7`6cf61365 reminder!futures::future::lazy::Lazy<closure, core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>::get<closure,core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>+0x119 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\lazy.rs @ 64]
000000f1`36ddcfa0 00007ff7`6d01e40e reminder!futures::future::lazy::{{impl}}::poll<closure,core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>+0x25 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\future\lazy.rs @ 82]
000000f1`36ddcff0 00007ff7`6d01e831 reminder!futures::task_impl::{{impl}}::poll_future_notify::{{closure}}<futures::future::lazy::Lazy<closure, core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>,futures::task_impl::NotifyHandle>+0x1e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\task_impl\mod.rs @ 289]
000000f1`36ddd040 00007ff7`6d0183eb reminder!futures::task_impl::{{impl}}::enter::{{closure}}<futures::future::lazy::Lazy<closure, core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>,closure,core::result::Result<futures::poll::Async<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>, ()>>+0x31 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\task_impl\mod.rs @ 363]
000000f1`36ddd090 00007ff7`6d01e777 reminder!futures::task_impl::std::set<closure,core::result::Result<futures::poll::Async<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>, ()>>+0xcb [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\task_impl\std\mod.rs @ 78]
000000f1`36ddd130 00007ff7`6d01e35b reminder!futures::task_impl::Spawn<futures::future::lazy::Lazy<closure, core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>>::enter<futures::future::lazy::Lazy<closure, core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>,closure,core::result::Result<futures::poll::Async<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>, ()>>+0xb7 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\task_impl\mod.rs @ 363]
000000f1`36ddd210 00007ff7`6cf75b11 reminder!futures::task_impl::Spawn<futures::future::lazy::Lazy<closure, core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>>::poll_future_notify<futures::future::lazy::Lazy<closure, core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>,futures::task_impl::NotifyHandle>+0x6b [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\futures-0.1.21\src\task_impl\mod.rs @ 290]
000000f1`36ddd2b0 00007ff7`6cf754de reminder!tokio::executor::current_thread::{{impl}}::block_on::{{closure}}<tokio_timer::timer::Timer<tokio_executor::park::ParkThread, tokio_timer::clock::clock::Clock>,futures::future::lazy::Lazy<closure, core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>>+0x31 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-0.1.7\src\executor\current_thread\mod.rs @ 487]
000000f1`36ddd300 00007ff7`6cf75034 reminder!tokio::executor::current_thread::{{impl}}::enter::{{closure}}::{{closure}}<tokio_executor::park::UnparkThread,closure,core::result::Result<futures::poll::Async<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>, ()>>+0x2e [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-0.1.7\src\executor\current_thread\mod.rs @ 763]
000000f1`36ddd350 00007ff7`6cf753ef reminder!tokio::executor::current_thread::CurrentRunner::set_spawn<closure,core::result::Result<futures::poll::Async<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>, ()>>+0xb4 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-0.1.7\src\executor\current_thread\mod.rs @ 794]
000000f1`36ddd400 00007ff7`6cf6f8f0 reminder!tokio::executor::current_thread::{{impl}}::enter::{{closure}}<tokio_executor::park::UnparkThread,closure,core::result::Result<futures::poll::Async<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>, ()>>+0x5f [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-0.1.7\src\executor\current_thread\mod.rs @ 764]
000000f1`36ddd470 00007ff7`6cf6ef3d reminder!std::thread::local::LocalKey<tokio::executor::current_thread::CurrentRunner>::try_with<tokio::executor::current_thread::CurrentRunner,closure,core::result::Result<futures::poll::Async<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>, ()>>+0x190 [C:\projects\rust\src\libstd\thread\local.rs @ 290]
000000f1`36ddd5d0 00007ff7`6cf75275 reminder!std::thread::local::LocalKey<tokio::executor::current_thread::CurrentRunner>::with<tokio::executor::current_thread::CurrentRunner,closure,core::result::Result<futures::poll::Async<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>, ()>>+0x4d [C:\projects\rust\src\libstd\thread\local.rs @ 244]
000000f1`36ddd6a0 00007ff7`6cf75782 reminder!tokio::executor::current_thread::Borrow<tokio_executor::park::UnparkThread>::enter<tokio_executor::park::UnparkThread,closure,core::result::Result<futures::poll::Async<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>, ()>>+0x55 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-0.1.7\src\executor\current_thread\mod.rs @ 765]
000000f1`36ddd720 00007ff7`6cf8cc6d reminder!tokio::executor::current_thread::Entered<tokio_timer::timer::Timer<tokio_executor::park::ParkThread, tokio_timer::clock::clock::Clock>>::block_on<tokio_timer::timer::Timer<tokio_executor::park::ParkThread, tokio_timer::clock::clock::Clock>,futures::future::lazy::Lazy<closure, core::result::Result<core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>, ()>>>+0x142 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-0.1.7\src\executor\current_thread\mod.rs @ 485]
000000f1`36ddda70 00007ff7`6cf8387b reminder!tokio_core::reactor::{{impl}}::run::{{closure}}::{{closure}}::{{closure}}::{{closure}}<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>>+0x8d [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-core-0.1.17\src\reactor\mod.rs @ 234]
000000f1`36dddbd0 00007ff7`6cf6fb2b reminder!tokio_timer::timer::handle::with_default::{{closure}}<closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x11b [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-timer-0.2.4\src\timer\handle.rs @ 64]
000000f1`36dddca0 00007ff7`6cf6ee14 reminder!std::thread::local::LocalKey<core::cell::RefCell<core::option::Option<tokio_timer::timer::handle::Handle>>>::try_with<core::cell::RefCell<core::option::Option<tokio_timer::timer::handle::Handle>>,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x19b [C:\projects\rust\src\libstd\thread\local.rs @ 290]
000000f1`36ddde10 00007ff7`6cf83717 reminder!std::thread::local::LocalKey<core::cell::RefCell<core::option::Option<tokio_timer::timer::handle::Handle>>>::with<core::cell::RefCell<core::option::Option<tokio_timer::timer::handle::Handle>>,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x64 [C:\projects\rust\src\libstd\thread\local.rs @ 244]
000000f1`36dddf10 00007ff7`6cf8cbc8 reminder!tokio_timer::timer::handle::with_default<closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x67 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-timer-0.2.4\src\timer\handle.rs @ 56]
000000f1`36dddfb0 00007ff7`6cf70514 reminder!tokio_core::reactor::{{impl}}::run::{{closure}}::{{closure}}::{{closure}}<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>>+0x48 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-core-0.1.17\src\reactor\mod.rs @ 239]
000000f1`36dde020 00007ff7`6cf6fd6b reminder!tokio_executor::global::with_default::{{closure}}<tokio::runtime::task_executor::TaskExecutor,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x124 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-executor-0.1.2\src\global.rs @ 176]
000000f1`36dde120 00007ff7`6cf6eeb4 reminder!std::thread::local::LocalKey<core::cell::Cell<core::option::Option<mut Executor*>>>::try_with<core::cell::Cell<core::option::Option<mut Executor*>>,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x19b [C:\projects\rust\src\libstd\thread\local.rs @ 290]
000000f1`36dde2a0 00007ff7`6cf703d6 reminder!std::thread::local::LocalKey<core::cell::Cell<core::option::Option<mut Executor*>>>::with<core::cell::Cell<core::option::Option<mut Executor*>>,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x64 [C:\projects\rust\src\libstd\thread\local.rs @ 244]
000000f1`36dde3b0 00007ff7`6cf8cb71 reminder!tokio_executor::global::with_default<tokio::runtime::task_executor::TaskExecutor,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x86 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-executor-0.1.2\src\global.rs @ 178]
000000f1`36dde460 00007ff7`6cfd62c4 reminder!tokio_core::reactor::{{impl}}::run::{{closure}}::{{closure}}<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>>+0x51 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-core-0.1.17\src\reactor\mod.rs @ 240]
000000f1`36dde4e0 00007ff7`6cf6f116 reminder!tokio_reactor::with_default::{{closure}}<closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x194 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-reactor-0.1.2\src\lib.rs @ 231]
000000f1`36dde5f0 00007ff7`6cf6ed24 reminder!std::thread::local::LocalKey<core::cell::RefCell<core::option::Option<tokio_reactor::HandlePriv>>>::try_with<core::cell::RefCell<core::option::Option<tokio_reactor::HandlePriv>>,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x1a6 [C:\projects\rust\src\libstd\thread\local.rs @ 290]
000000f1`36dde770 00007ff7`6cfd60e8 reminder!std::thread::local::LocalKey<core::cell::RefCell<core::option::Option<tokio_reactor::HandlePriv>>>::with<core::cell::RefCell<core::option::Option<tokio_reactor::HandlePriv>>,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x64 [C:\projects\rust\src\libstd\thread\local.rs @ 244]
000000f1`36dde880 00007ff7`6cf8cb06 reminder!tokio_reactor::with_default<closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0x78 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-reactor-0.1.2\src\lib.rs @ 214]
000000f1`36dde940 00007ff7`6cf9bc6a reminder!tokio_core::reactor::{{impl}}::run::{{closure}}<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>>+0x56 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-core-0.1.17\src\reactor\mod.rs @ 241]
000000f1`36dde9c0 00007ff7`6cf8c605 reminder!scoped_tls::ScopedKey<tokio_core::reactor::Core>::set<tokio_core::reactor::Core,closure,core::result::Result<futures::poll::Async<()>, telegram_bot::errors::Error>>+0xaa [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\scoped-tls-0.1.2\src\lib.rs @ 155]
000000f1`36ddea90 00007ff7`6cf817b9 reminder!tokio_core::reactor::Core::run<futures::stream::for_each::ForEach<telegram_bot::stream::UpdatesStream, closure, core::result::Result<(), telegram_bot::errors::Error>>>+0x2d5 [C:\Users\Andrew\.cargo\registry\src\github.com-1ecc6299db9ec823\tokio-core-0.1.17\src\reactor\mod.rs @ 230]
000000f1`36ddf050 00007ff7`6cf96914 reminder!reminder::main+0x179 [D:\src\reminder\src\main.rs @ 44]
000000f1`36ddf760 00007ff7`6d3b2c5d reminder!std::rt::lang_start::{{closure}}<()>+0x14 [C:\projects\rust\src\libstd\rt.rs @ 74]
(Inline Function) --------`-------- reminder!std::rt::lang_start_internal::{{closure}}+0xc [C:\projects\rust\src\libstd\rt.rs @ 59]
000000f1`36ddf7a0 00007ff7`6d3c47c2 reminder!std::panicking::try::do_call<closure,i32>+0x1d [C:\projects\rust\src\libstd\panicking.rs @ 306]
000000f1`36ddf7e0 00007ff7`6d3b7b33 reminder!panic_unwind::__rust_maybe_catch_panic+0x22 [C:\projects\rust\src\libpanic_unwind\lib.rs @ 102]
(Inline Function) --------`-------- reminder!std::panicking::try+0x33 [C:\projects\rust\src\libstd\panicking.rs @ 285]
(Inline Function) --------`-------- reminder!std::panic::catch_unwind+0x33 [C:\projects\rust\src\libstd\panic.rs @ 361]
000000f1`36ddf840 00007ff7`6cf968e4 reminder!std::rt::lang_start_internal+0xa3 [C:\projects\rust\src\libstd\rt.rs @ 58]
000000f1`36ddf8e0 00007ff7`6cf818b7 reminder!std::rt::lang_start<()>+0x44 [C:\projects\rust\src\libstd\rt.rs @ 74]
000000f1`36ddf940 00007ff7`6d3d2450 reminder!main+0x27
*** ERROR: Symbol file could not be found.  Defaulted to export symbols for kernel32.dll - 
(Inline Function) --------`-------- reminder!invoke_main+0x22 [f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl @ 64]
000000f1`36ddf980 00007ffb`758413d2 reminder!__scrt_common_main_seh+0x124 [f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl @ 255]
000000f1`36ddf9c0 00007ffb`761f54f4 kernel32!BaseThreadInitThunk+0x22
000000f1`36ddf9f0 00000000`00000000 ntdll!RtlUserThreadStart+0x34

demonov avatar Jun 21 '18 02:06 demonov

Probably this is similar to https://github.com/telegram-rs/telegram-bot/issues/75#issuecomment-303229360

Just checked. The issue is only in debug build as well

demonov avatar Jun 21 '18 03:06 demonov

Looks like serde-stacker fixes problem. At least issue example works fine with it.

knsd avatar Oct 21 '19 09:10 knsd