pub trait IncidentGetApiResource {
    // Required methods
    fn incidents(&mut self) -> Box<&dyn BaseRequestExecutor>;
    fn incident(&mut self, id: i64) -> Box<&dyn BaseRequestExecutor>;
}

Required Methods§

source

fn incidents(&mut self) -> Box<&dyn BaseRequestExecutor>

source

fn incident(&mut self, id: i64) -> Box<&dyn BaseRequestExecutor>

Implementors§