1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![allow(dead_code)]
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(unused_imports)]
use serde::{Serialize, Deserialize};
use serde_repr::{Deserialize_repr, Serialize_repr};use super::*;
use super::passphrase_common::*;
pub struct SecretEntryArg {
pub desc: Option<String>,
pub prompt: Option<String>,
pub err: Option<String>,
pub cancel: Option<String>,
pub ok: Option<String>,
pub reason: Option<String>,
pub showTyping: bool,
}
pub struct SecretEntryRes {
pub text: Option<String>,
pub canceled: bool,
pub storeSecret: bool,
}