pub trait Reporting {
    type Record: Record;
    type Reporter: Iterator<Item = Self::Record>;
    fn report(&self) -> Self::Reporter;
}
Expand description

Indicates that this resource can produce output for a .well-known/core resource.

Associated Types

Required methods

Implementors