#[non_exhaustive]pub enum Error {
PlatformFailure(Box<dyn Error + Send + Sync>),
NoStorageAccess(Box<dyn Error + Send + Sync>),
NoEntry,
BadEncoding(Vec<u8>),
TooLong(String, u32),
Invalid(String, String),
Ambiguous(Vec<Entry>),
NoDefaultStore,
NotSupportedByStore(String),
}
Expand description
Each variant of the Error
enum provides a summary of the error.
More details, if relevant, are contained in the associated value,
which may be platform-specific.
This enum is non-exhaustive so that more values can be added to it without a SemVer break. Clients should always have default handling for variants they don’t understand.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
PlatformFailure(Box<dyn Error + Send + Sync>)
This indicates runtime failure in the underlying platform storage system. The details of the failure can be retrieved from the attached platform error.
NoStorageAccess(Box<dyn Error + Send + Sync>)
This indicates that the underlying secure storage holding saved items could not be accessed. Typically, this is because of access rules in the platform; for example, it might be that the credential store is locked. The underlying platform error will typically give the reason.
NoEntry
This indicates that there is no underlying credential entry in the platform for this entry. Either one was never set, or it was deleted.
BadEncoding(Vec<u8>)
This indicates that the retrieved password blob was not a UTF-8 string. The underlying bytes are available for examination in the attached value.
TooLong(String, u32)
This indicates that one of the entry’s credential attributes exceeded a length limit in the underlying platform. The attached values give the name of the attribute and the platform length limit that was exceeded.
Invalid(String, String)
This indicates that one of the parameters passed to the operation was invalid. The attached value gives the parameter and describes the problem.
Ambiguous(Vec<Entry>)
This indicates that there is more than one credential found in the store that matches the entry. Its value is a vector of entries wrapping the matching credentials.
NoDefaultStore
This indicates that there was no default credential builder to use; the client must set one before creating entries.
NotSupportedByStore(String)
This indicates that the requested operation is unsupported by the store handling the request. The vendor of the store is the value.