pub trait UpdateService {
    // Required methods
    fn get(&self) -> UpdateServiceGetResponse;
    fn put(&mut self, body: UpdateService) -> UpdateServicePutResponse;
    fn patch(&mut self, body: Value) -> UpdateServicePatchResponse;
}

Required Methods§

Implementors§