FreeableAsyncResult.Callback

Undocumented in source.
  1. alias Callback = void function(void* data, scope RormError error) nothrow
  2. alias Callback = void function(void* data, scope V result, scope RormError error) nothrow
  3. alias Callback = void function(void* data, T result, scope RormError error) nothrow
    struct FreeableAsyncResult(T)
    static if(!(is(T == void)))
    static if(!(is(T : void delegate(scope V value), V)))
    static if(__traits(isPOD, T) || is(T == P*, P))
    alias Callback = void function
    (
    void* data
    ,,
    scope RormError error
    )
    nothrow

Meta