openauth-core 0.0.4

Core types and primitives for OpenAuth.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Plugin migration metadata.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PluginMigration {
    pub name: String,
}

impl PluginMigration {
    pub fn new(name: impl Into<String>) -> Self {
        Self { name: name.into() }
    }
}