CallbackConfigurerAnnotation.this

Constructor accepting a configurer delegate, and it's arguments.

struct CallbackConfigurerAnnotation(Z, Dg, Args...)
this
(
Dg dg
,
ref Args args
)
if (
is(Dg == void delegate
(,
Z
,
Args
)
) ||
is(Dg == void function
(,
Z
,
Args
)
)
||
is(Dg == void delegate
(,
ref Z
,
Args
)
)
||
is(Dg == void function
(,
ref Z
,
Args
)
)
)

Parameters

dg Dg

delegate that will be used to configure a component

args Args

list of arguments passed to delegate.

Meta