[][src]Struct beeswax::resource::authenticate::Authenticate

pub struct Authenticate {
    pub email: String,
    pub password: String,
    pub account_id: Option<i32>,
    pub keep_logged_in: bool,
}

Fields

email: String

User Email

password: String

User Password

account_id: Option<i32>

For Multi-Account Users only, allows the user to authenticate into a different account on the same Buzz instance

keep_logged_in: bool

When set to true, the user will be kept logged in for up to 30 days

Implementations

impl Authenticate[src]

pub fn simple(email: String, password: String) -> Authenticate[src]

Create a simple authentication object with a username and password See Authentication

use beeswax::resource::authenticate::Authenticate;

let authentication = Authenticate::simple("example@example.com".to_string(), "password".to_string());
assert_eq!(
  authentication,
  Authenticate {
    email: "example@example.com".to_string(),
    password: "password".to_string(),
    account_id: None,
    keep_logged_in: false,
  }
)

Trait Implementations

impl Clone for Authenticate[src]

impl Debug for Authenticate[src]

impl Default for Authenticate[src]

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

impl From<Authenticate> for AnyResource[src]

impl FromAnyResource for Authenticate[src]

impl PartialEq<Authenticate> for Authenticate[src]

impl Resource for Authenticate[src]

impl Serialize for Authenticate[src]

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

impl<T> Instrument 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>, 

impl<T> WithSubscriber for T[src]