pub trait CredStoreTestingExt: CredStoreMut {
    // Provided method
    fn provision(&self, root_password: &str) -> Result<()> { ... }
}

Provided Methods§

source

fn provision(&self, root_password: &str) -> Result<()>

Generates new root credentials and issues the node credentials a writecap using them. The given password is used to secure the root credentials.

Implementors§

source§

impl<T: CredStoreMut> CredStoreTestingExt for T