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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//! Errors returned by [`crate::secrets::SecretsStore`] CRUD operations.
use Error;
/// Error returned by [`crate::secrets::SecretsStore`] CRUD operations.
///
/// The placeholder-resolver path has its own error type
/// (`SecretInjectionError`, AAASM-1924) — this enum only covers
/// failures internal to the store itself.
/// Error returned by [`crate::secrets::resolver::resolve_placeholders`] when
/// a `${NAME}` token is encountered whose name has no entry in the
/// [`crate::secrets::SecretsStore`].
///
/// Distinct from [`SecretsError`] so the request-path error type does not
/// expose store-internal CRUD failure modes that callers cannot do
/// anything about.