Trait pallet_ddxp::Trait[][src]

pub trait Trait: Trait {
    type Event: From<Event<Self>> + Into<<Self as Trait>::Event>;
    type MinLength: Get<usize>;
    type MaxLength: Get<usize>;
}
Expand description

Configure the pallet by specifying the parameters and types on which it depends.

Associated Types

type Event: From<Event<Self>> + Into<<Self as Trait>::Event>[src]

Because this pallet emits events, it depends on the runtime’s definition of an event.

type MinLength: Get<usize>[src]

The minimum length a name may be.

type MaxLength: Get<usize>[src]

The maximum length a name may be.

Implementors