Struct CallbackConfigurerAnnotation

Annotation that specifies a delegate to be used to configure component somehow.

struct CallbackConfigurerAnnotation(Z, Dg, Args...)
  
if (is(Dg == void delegate(Locator!(), Z, Args)) || is(Dg == void function(Locator!(), Z, Args)) || is(Dg == void delegate(Locator!(), ref Z, Args)) || is(Dg == void function(Locator!(), ref Z, Args)));

Constructors

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

Fields

NameTypeDescription
args Tuple!Args
dg Dg

Parameters

NameDescription
Z the type of component that will be returned by the delegate
Args type tuple of args that can be passed to delegate.