You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for constants to message generation (#269)
This will produce:
```
impl VariousTypes {
/// binary, hexadecimal and octal constants are also possible
pub const TWO_PLUS_TWO: i8 = 5;
/// Only unbounded strings are possible
pub const PASSWORD: &'static str = "hunter2";
/// As determined by Edward J. Goodwin
pub const PI: f32 = 3.0;
}
```
0 commit comments