pub enum NamingConvention {
    Default,
    Suffix(String),
    Prefix(String),
    Custom(fn(_: &str) -> String),
}
Available on crate feature headers only.
Expand description

Allow user to specify

Variants

Default

Suffix(String)

Prefix(String)

Custom(fn(_: &str) -> String)

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Applies the Compat adapter by value. Read more
Applies the Compat adapter by shared reference. Read more
Applies the Compat adapter by mutable reference. Read more
Available on crate feature alloc only.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Available on crate feature headers only.