Move cancellable to the type system and implement multi-parenting #1
Sem revisor
Etiquetas
Nenhum rótulo
Sem marco
Sem projeto
Sem responsáveis
2 participantes
Notificações
Data limite
Não há data limite definida.
Dependências
Não há dependências definidas.
Referência: SoniEx2/rust.eventbus#1
Carregando…
Adicionar tabela
Referência em uma nova issue
Nenhuma descrição fornecida.
Excluir branch "dgriffen/rust.eventbus:dev/dgriffen/type-cancel"
Apagar um branch é permanente. Ainda que o branch apagado possa continuar a existir por um breve período antes de ser realmente apagado, isso NÃO PODE ser desfeito na maioria dos casos. Continuar?
The dyn_events test was changed to produce the output requested in your sample here: https://bpaste.net/show/73d5e4bc55b4
This is the output produced when run with
cargo test -- --nocaptureThe output requested in my sample should be done as a separate test. And it should use asserts somehow.
This also doesn't respect the hook priorities correctly.
Hook priorities is quite a large problem with the way this system is implemented. Rust really doesn't have a good built-in system for dynamic typing and downcasting which will have to be done in order to respect hook priorities since we'll be mixing up handlers a lot.
Some way to generate identifiers (for use in a large enum or somesuch) would work just as well, I think, altho I'm not quite sure how to do that.
Ah yes, having the macro generate an enum large enough for each type would probably work great. I'm not sure if Rust supports turning a
tyinto anidentthough.Pull Request Fechado