securitydept-creds-manage 0.2.0

Credentials Management of SecurityDept, a layered authentication and authorization toolkit built as reusable Rust crates.
Documentation
1
2
3
4
5
use crate::{CredsManageConfig, CredsManageResult};

pub trait MigratorTrait {
    fn up(&self, config: &CredsManageConfig, steps: Option<u32>) -> CredsManageResult<()>;
}