pub trait SafeNames {
// Required method
fn lower_snake(&self) -> String;
}
Expand description
Names that can be used to build identifiers without collision.
Required Methods§
Sourcefn lower_snake(&self) -> String
fn lower_snake(&self) -> String
Name in the lower snake format (e.g. lower_snake_case).