pub enum ItemCategory {
Show 22 variants
Login,
CreditCard,
SecureNote,
Identity,
Password,
Document,
SoftwareLicense,
BankAccount,
Database,
DriverLicense,
OutdoorLicense,
Membership,
Passport,
RewardProgram,
SocialSecurityNumber,
WirelessRouter,
Server,
EmailAccount,
ApiCredential,
MedicalRecord,
SshKey,
Unknown(String),
}Expand description
The kind of a vault item, mapped from its template id. The ids are 1Password’s standard
category template UUIDs; an unrecognized id is preserved as ItemCategory::Unknown so nothing
is lost.
Variants§
Login
Template 001.
CreditCard
Template 002.
SecureNote
Template 003.
Identity
Template 004.
Password
Template 005.
Document
Template 006.
SoftwareLicense
Template 100.
BankAccount
Template 101.
Database
Template 102.
DriverLicense
Template 103.
OutdoorLicense
Template 104.
Membership
Template 105.
Passport
Template 106.
RewardProgram
Template 107.
SocialSecurityNumber
Template 108.
WirelessRouter
Template 109.
Server
Template 110.
EmailAccount
Template 111.
ApiCredential
Template 112.
MedicalRecord
Template 113.
SshKey
Template 114.
Unknown(String)
A template id this crate does not know, kept verbatim.
Implementations§
Source§impl ItemCategory
impl ItemCategory
Sourcepub(super) fn from_template_id(id: &str) -> ItemCategory
pub(super) fn from_template_id(id: &str) -> ItemCategory
Maps a 1Password template id to a category. Extends the TemplateId handling in
Client.ConvertVaultItem to the full standard template set.
Trait Implementations§
Source§impl Clone for ItemCategory
impl Clone for ItemCategory
Source§fn clone(&self) -> ItemCategory
fn clone(&self) -> ItemCategory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ItemCategory
impl Debug for ItemCategory
impl Eq for ItemCategory
Source§impl PartialEq for ItemCategory
impl PartialEq for ItemCategory
impl StructuralPartialEq for ItemCategory
Auto Trait Implementations§
impl Freeze for ItemCategory
impl RefUnwindSafe for ItemCategory
impl Send for ItemCategory
impl Sync for ItemCategory
impl Unpin for ItemCategory
impl UnsafeUnpin for ItemCategory
impl UnwindSafe for ItemCategory
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T> ⓘ
unsafe fn consume_handle(handle: Handle) -> Arc<T> ⓘ
Consume a handle, getting back the initial
Arc<> Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more