Skip to main content

ReadAction

Trait ReadAction 

Source
pub trait ReadAction {
    type Output: Resource;
    type Arguments: Sync;
}
Expand description

Marker trait showing indicating that a struct is a read action.

Required Associated Types§

Source

type Output: Resource

Resource returned when calling the action.

Source

type Arguments: Sync

Arguments used to get the resource. Could be used in filters.

Implementors§