[][src]Struct prs_lib::store::Store

pub struct Store {
    pub root: PathBuf,
}

Represents a password store.

Fields

root: PathBuf

Root directory of the password store.

This path is always absolute.

Implementations

impl Store[src]

pub fn open<P: AsRef<str>>(root: P) -> Result<Self>[src]

Open a store at the given path.

pub fn recipients(&self) -> Result<Recipients>[src]

Get the recipient keys for this store.

pub fn sync(&self) -> Sync<'_>[src]

Get a sync helper for this store.

pub fn secret_iter(&self) -> SecretIter

Notable traits for SecretIter

impl Iterator for SecretIter type Item = Secret;
[src]

Create secret iterator for this store.

pub fn secrets(&self, filter: Option<String>) -> Vec<Secret>[src]

List store password secrets.

pub fn find_at(&self, path: &str) -> Option<Secret>[src]

Try to find matching secret at path.

pub fn find(&self, query: Option<String>) -> FindSecret[src]

Try to find matching secrets for given query.

If secret is found at exact query path, FindSecret::Found is returned. Otherwise any number of closely matching secrets is returned as FindSecret::Many.

pub fn normalize_secret_path<P: AsRef<Path>>(
    &self,
    target: P,
    name_hint: Option<&str>,
    create_dirs: bool
) -> Result<PathBuf>
[src]

Normalizes a path for a secret in this store.

  • Ensures path is within store.
  • If directory is given, name hint is appended.
  • Sets correct extension.
  • Creates parent directories if non existant (optional).

Trait Implementations

impl Clone for Store[src]

Auto Trait Implementations

impl RefUnwindSafe for Store

impl Send for Store

impl Sync for Store

impl Unpin for Store

impl UnwindSafe for Store

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<Src, Scheme> ApproxFrom<Src, Scheme> for Src where
    Scheme: ApproxScheme, 

type Err = NoError

The error type produced by a failed conversion.

impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Src where
    Dst: ApproxFrom<Src, Scheme>,
    Scheme: ApproxScheme, 

type Err = <Dst as ApproxFrom<Src, Scheme>>::Err

The error type produced by a failed conversion.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, Dst> ConvAsUtil<Dst> for T

impl<T> ConvUtil for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<Src> TryFrom<Src> for Src

type Err = NoError

The error type produced by a failed conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<Src, Dst> TryInto<Dst> for Src where
    Dst: TryFrom<Src>, 

type Err = <Dst as TryFrom<Src>>::Err

The error type produced by a failed conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<Src> ValueFrom<Src> for Src

type Err = NoError

The error type produced by a failed conversion.

impl<Src, Dst> ValueInto<Dst> for Src where
    Dst: ValueFrom<Src>, 

type Err = <Dst as ValueFrom<Src>>::Err

The error type produced by a failed conversion.