func()

in pkg/fake/types.go [155:161]


func (h MockHandler[T]) Result(_ context.Context, result *T) error {
	if h.err != nil {
		return h.err
	}
	*result = *h.result // TODO: may need to deep copy
	return nil
}