mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
08243e94c7
* Improve Rust API docs * Add changes file
40 lines
1.6 KiB
Rust
40 lines
1.6 KiB
Rust
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Default, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct AuthOptions {
|
|
/// Enables authentication using the device's password. This feature is available on both Android and iOS.
|
|
pub allow_device_credential: bool,
|
|
/// Label for the Cancel button. This feature is available on both Android and iOS.
|
|
pub cancel_title: Option<String>,
|
|
/// Specifies the text displayed on the fallback button if biometric authentication fails. This feature is available iOS only.
|
|
pub fallback_title: Option<String>,
|
|
/// Title indicating the purpose of biometric verification. This feature is available Android only.
|
|
pub title: Option<String>,
|
|
/// SubTitle providing contextual information of biometric verification. This feature is available Android only.
|
|
pub subtitle: Option<String>,
|
|
/// Specifies whether additional user confirmation is required, such as pressing a button after successful biometric authentication. This feature is available Android only.
|
|
pub confirmation_required: Option<bool>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, serde_repr::Deserialize_repr)]
|
|
#[repr(u8)]
|
|
pub enum BiometryType {
|
|
None = 0,
|
|
TouchID = 1,
|
|
FaceID = 2,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Deserialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct Status {
|
|
pub is_available: bool,
|
|
pub biometry_type: BiometryType,
|
|
pub error: Option<String>,
|
|
pub error_code: Option<String>,
|
|
}
|