logo
pub trait Make1<Arg> {
    fn make_1(arg: Arg) -> Self;

    fn make(arg: Arg) -> Self { ... }
}
Expand description

Constructor with single argument.

Required Methods

Constructor without arguments.

Provided Methods

Constructor without arguments.

Implementors