Trait SafeNames

Source
pub trait SafeNames {
    // Required method
    fn lower_snake(&self) -> String;
}
Expand description

Names that can be used to build identifiers without collision.

Required Methods§

Source

fn lower_snake(&self) -> String

Name in the lower snake format (e.g. lower_snake_case).

Implementors§