rust-qt / ritual

Use C++ libraries from Rust
Apache License 2.0
1.24k stars 49 forks source link

Improve self argument kind captions #32

Closed Riateche closed 7 years ago

Riateche commented 8 years ago

Current suffixes: from_const (receives &self), from_mut (receives &mut self), static (static).

Better captions:

presence const member mut member static
all (no suffix) mut static
const member, mut member (no suffix) mut
const member, static (no suffix) static
mut member, static (no suffix) static