mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-10 00:42:29 -06:00
14 lines
322 B
Swift
14 lines
322 B
Swift
// MARK: CipherMatchResult
|
|
|
|
/// An enum describing the strength on a cipher matching operation.
|
|
enum CipherMatchResult {
|
|
/// The cipher is an exact match for the "query".
|
|
case exact
|
|
|
|
/// The cipher is a close match for the "query".
|
|
case fuzzy
|
|
|
|
/// The cipher doesn't match the "query".
|
|
case none
|
|
}
|