[][src]Trait threads_pool::ConfigStatus

pub trait ConfigStatus {
    fn pool_name(&self) -> Option<String>;
fn refresh_period(&self) -> Option<Duration>;
fn worker_behavior(&self) -> StatusBehaviors;
fn set_pool_name(&mut self, name: String);
fn set_refresh_period(&mut self, period: Option<Duration>);
fn set_worker_behavior(&mut self, behavior: StatusBehaviors); }

Required methods

fn pool_name(&self) -> Option<String>

fn refresh_period(&self) -> Option<Duration>

fn worker_behavior(&self) -> StatusBehaviors

fn set_pool_name(&mut self, name: String)

fn set_refresh_period(&mut self, period: Option<Duration>)

fn set_worker_behavior(&mut self, behavior: StatusBehaviors)

Loading content...

Implementors

impl ConfigStatus for Config[src]

Loading content...