AllView is similar to the global view, however, instead of being an empty view, it's still counted as a view. This means that each call for a field is associated with the server view, which results in slightly different caching behavior. Additionally, it can be overridden in different views.
| 705 | // which results in slightly different caching behavior. Additionally, it can |
| 706 | // be overridden in different views. |
| 707 | type AllView struct{} |
| 708 | |
| 709 | func (AllView) Contains(view call.View) bool { |
| 710 | return true |
nothing calls this directly
no outgoing calls
no test coverage detected