Enum matrix_sdk::authentication::AuthSession
source · #[non_exhaustive]pub enum AuthSession {
Matrix(MatrixSession),
Oidc(OidcSession),
}
Expand description
A user session using one of the available authentication APIs.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Matrix(MatrixSession)
A session using the native Matrix authentication API.
Oidc(OidcSession)
Available on crate feature
experimental-oidc
only.A session using the OpenID Connect API.
Implementations§
source§impl AuthSession
impl AuthSession
sourcepub fn meta(&self) -> &SessionMeta
pub fn meta(&self) -> &SessionMeta
Get the matrix user information of this session.
sourcepub fn into_meta(self) -> SessionMeta
pub fn into_meta(self) -> SessionMeta
Take the matrix user information of this session.
sourcepub fn access_token(&self) -> &str
pub fn access_token(&self) -> &str
Get the access token of this session.
sourcepub fn get_refresh_token(&self) -> Option<&str>
pub fn get_refresh_token(&self) -> Option<&str>
Get the refresh token of this session.
Trait Implementations§
source§impl Clone for AuthSession
impl Clone for AuthSession
source§fn clone(&self) -> AuthSession
fn clone(&self) -> AuthSession
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 moresource§impl Debug for AuthSession
impl Debug for AuthSession
source§impl From<MatrixSession> for AuthSession
impl From<MatrixSession> for AuthSession
source§fn from(session: MatrixSession) -> Self
fn from(session: MatrixSession) -> Self
Converts to this type from the input type.
source§impl From<OidcSession> for AuthSession
Available on crate feature experimental-oidc
only.
impl From<OidcSession> for AuthSession
Available on crate feature
experimental-oidc
only.source§fn from(session: OidcSession) -> Self
fn from(session: OidcSession) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthSession
impl !RefUnwindSafe for AuthSession
impl Send for AuthSession
impl Sync for AuthSession
impl Unpin for AuthSession
impl !UnwindSafe for AuthSession
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more