feat: impl to_string for Entity::Role

This commit is contained in:
Himadri Bhattacharjee
2025-04-18 07:34:00 +05:30
parent d9ef0f093c
commit 2b0637cf82

View File

@@ -111,3 +111,13 @@ pub enum Role {
Admin,
Normal,
}
impl ToString for Role {
fn to_string(&self) -> String {
match self {
Role::Admin => "admin",
Role::Normal => "normal",
}
.to_string()
}
}