Instance Method
all(decoding:with:)
Using the given
SQLRowDecoder, returns the output rows, if any, decoded as a given type.func all<D>(decoding type: D.Type, with decoder: SQLRowDecoder) -> EventLoopFuture<[D]> where D : Decodable, D : SendableMetatype
Parameters
typeThe type of the desired values.
decoderA configured
SQLRowDecoderto use.
Return Value
A future containing the decoded values, if any.