Interface CanAnswer<T>

A trait that defines an object (typically a request object) that can be converted to a DNS answer object.

interface CanAnswer<T> {
    toAnswer(): T;
}

Type Parameters

  • T

Implemented by

Methods

Methods