[][src]Enum rbw::db::EntryData

pub enum EntryData {
    Login {
        username: Option<String>,
        password: Option<String>,
        uris: Vec<String>,
    },
    Card {
        cardholder_name: Option<String>,
        number: Option<String>,
        brand: Option<String>,
        exp_month: Option<String>,
        exp_year: Option<String>,
        code: Option<String>,
    },
    Identity {
        title: Option<String>,
        first_name: Option<String>,
        middle_name: Option<String>,
        last_name: Option<String>,
        address1: Option<String>,
        address2: Option<String>,
        address3: Option<String>,
        city: Option<String>,
        state: Option<String>,
        postal_code: Option<String>,
        country: Option<String>,
        phone: Option<String>,
        email: Option<String>,
        ssn: Option<String>,
        license_number: Option<String>,
        passport_number: Option<String>,
        username: Option<String>,
    },
    SecureNote,
}

Variants

Login

Fields of Login

username: Option<String>password: Option<String>uris: Vec<String>
Card

Fields of Card

cardholder_name: Option<String>number: Option<String>brand: Option<String>exp_month: Option<String>exp_year: Option<String>code: Option<String>
Identity

Fields of Identity

title: Option<String>first_name: Option<String>middle_name: Option<String>last_name: Option<String>address1: Option<String>address2: Option<String>address3: Option<String>city: Option<String>state: Option<String>postal_code: Option<String>country: Option<String>phone: Option<String>email: Option<String>ssn: Option<String>license_number: Option<String>passport_number: Option<String>username: Option<String>
SecureNote

Trait Implementations

impl Clone for EntryData[src]

impl Debug for EntryData[src]

impl<'de> Deserialize<'de> for EntryData[src]

impl Eq for EntryData[src]

impl PartialEq<EntryData> for EntryData[src]

impl Serialize for EntryData[src]

impl StructuralEq for EntryData[src]

impl StructuralPartialEq for EntryData[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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<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<V, T> VZip<V> for T where
    V: MultiLane<T>,