kenz-gelsoft / wxRust2

re-exploration Rust binding to wx
MIT License
78 stars 10 forks source link

Support up/down cast #107

Closed kenz-gelsoft closed 2 years ago

kenz-gelsoft commented 2 years ago
kenz-gelsoft commented 2 years ago

upcasting may be expressed with AsRef< Base>

https://doc.rust-lang.org/std/convert/trait.AsRef.html

kenz-gelsoft commented 2 years ago

downcast could be expressed as:

impl TryFrom<AsRef<Base>> for &Derived or so?

kenz-gelsoft commented 2 years ago

upcasting may be expressed with AsRef< Base>

https://doc.rust-lang.org/std/convert/trait.AsRef.html

kenz-gelsoft commented 2 years ago

Try to represent base/derived classes with From/TryFrom traits.

kenz-gelsoft commented 2 years ago

Use these scenarios as testbed: