List Question
10 TechQA 2015-06-15 21:40:56How can I cast Rc<RefCell<Box<MyTrait> to Rc<RefCell<Box<MyStruct>>>
170 views
Asked by Dmitry Uvarov
How do I pass Rc<RefCell<Box<MyStruct>>> to a function accepting Rc<RefCell<Box<dyn MyTrait>>>?
3.8k views
Asked by Dmitry Uvarov
Variable parameterised over a trait not a struct?
688 views
Asked by jbrown
Rust says the function parameter does not live enough, even though proper lifetime have been placed
192 views
Asked by entropy32
trait cannot be made into an object due to generic type parameters
61 views
Asked by matanmarkind
Why can't some traits be made into objects
1.4k views
Asked by wrongusername
Get Rc<RefCell<dyn T>>> on a sub-type
1.1k views
Asked by Corebreaker
Why is a value not converted to a trait object with dynamic dispatch in a closure?
794 views
Asked by Rodolfo
What makes something a "trait object"?
19.7k views
Asked by Shepmaster
Why does a method returning &Self makes a trait object-unsafe?
125 views
Asked by Martin Jocqueviel