ksud: fix clippy

This commit is contained in:
tiann
2023-03-27 15:44:18 +08:00
parent 284b962d64
commit b1af4ada60
2 changed files with 3 additions and 8 deletions

View File

@@ -376,19 +376,14 @@ const CMD_TYPE_TRANSITION: u32 = 7;
const CMD_TYPE_CHANGE: u32 = 8;
const CMD_GENFSCON: u32 = 9;
#[derive(Debug)]
#[derive(Debug, Default)]
enum PolicyObject {
All, // for "*", stand for all objects, and is NULL in ffi
One([u8; SEPOLICY_MAX_LEN]),
#[default]
None,
}
impl Default for PolicyObject {
fn default() -> Self {
PolicyObject::None
}
}
impl TryFrom<&str> for PolicyObject {
type Error = anyhow::Error;
fn try_from(s: &str) -> Result<Self> {