Skip to content

Instantly share code, notes, and snippets.

@aosoft
Last active March 8, 2020 02:18
Show Gist options
  • Save aosoft/5402155e12f1cfc371c8321f76bb68b4 to your computer and use it in GitHub Desktop.
Save aosoft/5402155e12f1cfc371c8321f76bb68b4 to your computer and use it in GitHub Desktop.
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