Last active
March 8, 2020 02:18
-
-
Save aosoft/5402155e12f1cfc371c8321f76bb68b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct trait { | |
void **fnptrs; | |
}; | |
struct rust_struct { | |
// data | |
}; | |
struct trait_ref { | |
trait *t; | |
rust_strcut *s; | |
}; | |
//////////////////////////////////////////////////////// | |
// ↓みたいにするとrust_structのインスタンス分だけ毎回trait分のメモリが別に必要になって | |
// 場合によってはヒープを使うことになる | |
struct trait { | |
void **fnptrs; | |
rust_strcut *s; | |
}; | |
typedef trait *trait_ref; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment