Enum matrix_sdk_base::ruma::api::AuthScheme
pub enum AuthScheme {
None,
AccessToken,
ServerSignatures,
}
Available on crate feature
api
only.Expand description
Authentication scheme used by the endpoint.
Variants§
None
No authentication is performed.
AccessToken
Authentication is performed by including an access token in the Authentication
http
header, or an access_token
query parameter.
It is recommended to use the header over the query parameter.
ServerSignatures
Authentication is performed by including X-Matrix signatures in the request headers, as defined in the federation API.
Trait Implementations§
§impl Clone for AuthScheme
impl Clone for AuthScheme
§fn clone(&self) -> AuthScheme
fn clone(&self) -> AuthScheme
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for AuthScheme
impl Debug for AuthScheme
§impl PartialEq for AuthScheme
impl PartialEq for AuthScheme
§fn eq(&self, other: &AuthScheme) -> bool
fn eq(&self, other: &AuthScheme) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for AuthScheme
impl Eq for AuthScheme
impl StructuralEq for AuthScheme
impl StructuralPartialEq for AuthScheme
Auto Trait Implementations§
impl RefUnwindSafe for AuthScheme
impl Send for AuthScheme
impl Sync for AuthScheme
impl Unpin for AuthScheme
impl UnwindSafe for AuthScheme
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.