pub trait Executable<T>: Sizedwhere
    T: HasResponse,
{ fn execute(self, instance: &DigitalOcean) -> Result<T, Error>; }
Expand description

Describes an API call which can be executed.

Required Methods§

Execute the corresponding call.

Implementors§