Trait fake::faker::Name [] [src]

pub trait Name: Fake {
    fn first_name() -> &'static str { ... }
    fn last_name() -> &'static str { ... }
    fn prefix() -> &'static str { ... }
    fn suffix() -> &'static str { ... }
    fn name() -> String { ... }
    fn name_with_middle() -> String { ... }
    fn title_descriptor() -> &'static str { ... }
    fn title_level() -> &'static str { ... }
    fn title_job() -> &'static str { ... }
    fn title() -> String { ... }
}

Provided Methods

Implementors