pub trait ReadAction { type Output: Resource; type Arguments: Sync; }
Marker trait showing indicating that a struct is a read action.
Resource returned when calling the action.
Arguments used to get the resource. Could be used in filters.