[][src]Struct logins::msg_types::PasswordInfo

pub struct PasswordInfo {
    pub id: String,
    pub hostname: String,
    pub password: String,
    pub username: String,
    pub http_realm: Option<String>,
    pub form_submit_url: Option<String>,
    pub username_field: String,
    pub password_field: String,
    pub times_used: i64,
    pub time_created: i64,
    pub time_last_used: i64,
    pub time_password_changed: i64,
}

Fields

id: Stringhostname: Stringpassword: Stringusername: Stringhttp_realm: Option<String>form_submit_url: Option<String>username_field: Stringpassword_field: Stringtimes_used: i64time_created: i64time_last_used: i64time_password_changed: i64

Implementations

impl PasswordInfo[src]

pub fn http_realm(&self) -> &str[src]

Returns the value of http_realm, or the default value if http_realm is unset.

pub fn form_submit_url(&self) -> &str[src]

Returns the value of form_submit_url, or the default value if form_submit_url is unset.

Trait Implementations

impl Clone for PasswordInfo[src]

impl Debug for PasswordInfo[src]

impl Default for PasswordInfo[src]

impl From<Login> for PasswordInfo[src]

impl From<PasswordInfo> for Login[src]

impl IntoFfi for PasswordInfo where
    PasswordInfo: Message
[src]

type Value = ByteBuffer

This type must be: Read more

impl Message for PasswordInfo[src]

impl PartialEq<PasswordInfo> for PasswordInfo[src]

impl StructuralPartialEq for PasswordInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for PasswordInfo

impl Send for PasswordInfo

impl Sync for PasswordInfo

impl Unpin for PasswordInfo

impl UnwindSafe for PasswordInfo

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> From<T> for T[src]

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

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>,