pub trait Reset {
// Required methods
fn reset(&self);
fn factory_reset(&self);
fn erase_persistent_info(&self) -> Result;
}
Expand description
Reset-related methods from the OpenThread “Instance” Module.
Required Methods§
Sourcefn reset(&self)
fn reset(&self)
Functional equivalent of otsys::otInstanceReset
.
Sourcefn factory_reset(&self)
fn factory_reset(&self)
Functional equivalent of
otsys::otInstanceFactoryReset
.
Sourcefn erase_persistent_info(&self) -> Result
fn erase_persistent_info(&self) -> Result
Functional equivalent of
otsys::otInstanceErasePersistentInfo
.