1 2 3 4 5 6 7 8
#[lang = "sized"] trait Sized {} #[lang = "fn_once"] pub trait FnOnce<Args> { extern "rust-call" fn call_once(self, args: Args) -> Self::Output; type Output; }