pub trait EventService {
    // Required methods
    fn get(&self) -> EventServiceGetResponse;
    fn put(&mut self, body: EventService) -> EventServicePutResponse;
    fn patch(&mut self, body: Value) -> EventServicePatchResponse;
}

Required Methods§

Implementors§