Enum ruma_common::api::AuthScheme
source · pub enum AuthScheme {
None,
AccessToken,
AccessTokenOptional,
AppserviceToken,
ServerSignatures,
}
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.
Using the query parameter is deprecated since Matrix 1.11.
AccessTokenOptional
Authentication is optional, and it is performed by including an access token in the
Authentication
http header, or an access_token
query parameter.
Using the query parameter is deprecated since Matrix 1.11.
AppserviceToken
Authentication is only performed for appservices, by including an access token in the
Authentication
http header, or an access_token
query parameter.
Using the query parameter is deprecated since Matrix 1.11.
ServerSignatures
Authentication is performed by including X-Matrix signatures in the request headers, as defined in the federation API.
Trait Implementations§
source§impl Clone for AuthScheme
impl Clone for AuthScheme
source§fn clone(&self) -> AuthScheme
fn clone(&self) -> AuthScheme
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AuthScheme
impl Debug for AuthScheme
source§impl PartialEq for AuthScheme
impl PartialEq for AuthScheme
impl Copy for AuthScheme
impl Eq for AuthScheme
impl StructuralPartialEq for AuthScheme
Auto Trait Implementations§
impl Freeze for AuthScheme
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.