Skip to main content

ListKeyRing

Trait ListKeyRing 

Source
pub trait ListKeyRing {
    // Required method
    fn list_secrets() -> Result<Vec<BTreeMap<String, String>>>;
}
Expand description

A Keyring that allows listing the identifiers

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'a> ListKeyRing for LinuxOsKeyRing<'a>

Available on Linux and crate feature linux-secret-service only.