[][src]Struct steam_auth::Verifier

pub struct Verifier { /* fields omitted */ }

Verifies the login details returned after users have gone through the 'sign in with Steam' page

Example

let (req, verifier) = Verifier::from_querystring(qs).unwrap();
// send off req, get back response
match verifier.verify_response(response.body()) {
    Ok(steam_id) => (), // got steam id
    Err(e) => (), // Auth failure
}

Methods

impl Verifier[src]

pub fn from_querystring<S: AsRef<str>>(
    s: S
) -> Result<(Request<Vec<u8>>, Self), Error>
[src]

Constructs a Verifier and a HTTP request from a query string. You must use the method, headers, URI and body from the returned http::Request struct.

pub fn from_parsed(
    login_data: SteamLoginData
) -> Result<(Request<Vec<u8>>, Self), Error>
[src]

Constructs a Verifier and a HTTP request directly from the data deserialized from the query string. This may be useful if you are using a web framework which offers the ability to deserialize data during route matching. You must use the method, headers, URI and body from the returned http::Request struct.

pub fn verify_response<S: Into<String>>(
    self,
    response_body: S
) -> Result<u64, Error>
[src]

Verifies the response from the steam servers.

Trait Implementations

impl Clone for Verifier[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Verifier[src]

Auto Trait Implementations

impl Send for Verifier

impl Sync for Verifier

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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