pub trait ResourceUpdateAll: ResourceMethod {
    type Body: RequestBody;
    fn update_all(state: &mut State, body: Self::Body) -> Self::Res;
}
Expand description

Handle a PUT request on the Resource root.

Associated Types

Required methods

Implementors