pub struct SecretsDialogProps {
pub secrets: Vec<SecretInfo>,
pub agent_access: bool,
pub has_totp: bool,
pub selected: Option<usize>,
pub scroll_offset: usize,
pub add_step: u8,
pub add_name: String,
pub add_value: String,
}Fields§
§secrets: Vec<SecretInfo>§agent_access: bool§has_totp: bool§selected: Option<usize>§scroll_offset: usize§add_step: u80 = normal, 1 = entering name, 2 = entering value
add_name: String§add_value: StringTrait Implementations§
Source§impl Default for SecretsDialogProps
impl Default for SecretsDialogProps
Source§fn default() -> SecretsDialogProps
fn default() -> SecretsDialogProps
Returns the “default value” for a type. Read more
impl Props for SecretsDialogProps
Auto Trait Implementations§
impl Freeze for SecretsDialogProps
impl RefUnwindSafe for SecretsDialogProps
impl Send for SecretsDialogProps
impl Sync for SecretsDialogProps
impl Unpin for SecretsDialogProps
impl UnsafeUnpin for SecretsDialogProps
impl UnwindSafe for SecretsDialogProps
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more