pub trait Systems {
    // Required methods
    fn get(&self) -> SystemsGetResponse;
    fn post(&mut self, body: ComputerSystem) -> SystemsPostResponse;
}

Required Methods§

Implementors§