pub trait Collector {
// Required methods
fn get_mode(&self) -> Mode;
fn get_retry(&self) -> i32;
fn inc_retry(&mut self);
fn set_uuid_cache(&mut self, uuid: String);
fn get_uuid_cache(&self) -> Option<String>;
fn get_nodes<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Option<i32>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
// Provided methods
fn get_version(&self) -> String { ... }
fn get_git_hash(&self) -> String { ... }
fn get_os(&self) -> String { ... }
fn get_arch(&self) -> String { ... }
fn get_uuid(&mut self, working_home: &Option<String>) -> Option<String> { ... }
}