pub trait Allowlist {
    fn all_features() -> Vec<&'static str>;
    fn to_features(&self) -> Vec<&'static str>;
}
Expand description

Defines an allowlist type.

Required Methods

Returns all features associated with the allowlist struct.

Returns the tauri features enabled on this allowlist.

Implementors