Struct relay_common::Auth

pub struct Auth { /* private fields */ }
Expand description

Represents an auth header.

Implementations§

§

impl Auth

pub fn from_pairs<'a, I, K, V>(pairs: I) -> Result<Auth, ParseAuthError>
where I: IntoIterator<Item = (K, V)>, K: AsRef<str>, V: Into<Cow<'a, str>>,

Creates an auth header from key value pairs.

pub fn from_querystring(qs: &[u8]) -> Result<Auth, ParseAuthError>

Creates an auth header from a query string.

pub fn timestamp(&self) -> Option<SystemTime>

Returns the timestamp the client defined

pub fn version(&self) -> u16

Returns the protocol version the client speaks

pub fn public_key(&self) -> &str

Returns the public key

pub fn secret_key(&self) -> Option<&str>

Returns the client’s secret if it authenticated with a secret.

pub fn is_public(&self) -> bool

Returns true if the authentication implies public auth (no secret)

pub fn client_agent(&self) -> Option<&str>

Returns the client’s agent

Trait Implementations§

§

impl Clone for Auth

§

fn clone(&self) -> Auth

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for Auth

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<'de> Deserialize<'de> for Auth

§

fn deserialize<__D>( __deserializer: __D ) -> Result<Auth, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Display for Auth

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl FromStr for Auth

§

type Err = ParseAuthError

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<Auth, ParseAuthError>

Parses a string s to return a value of this type. Read more
§

impl Serialize for Auth

§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Auth

§

impl Send for Auth

§

impl Sync for Auth

§

impl Unpin for Auth

§

impl UnwindSafe for Auth

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

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