pub struct ClientRegistrationData {
pub metadata: Raw<ClientMetadata>,
pub static_registrations: Option<HashMap<Url, ClientId>>,
}
Expand description
Data to register or restore a client.
Fields§
§metadata: Raw<ClientMetadata>
The metadata to use to register the client when using dynamic client registration.
static_registrations: Option<HashMap<Url, ClientId>>
Static registrations for servers that don’t support dynamic registration but provide a client ID out-of-band.
The keys of the map should be the URLs of the homeservers, but keys
using issuer
URLs are also supported.
Implementations§
Source§impl ClientRegistrationData
impl ClientRegistrationData
Sourcepub fn new(metadata: Raw<ClientMetadata>) -> Self
pub fn new(metadata: Raw<ClientMetadata>) -> Self
Construct a ClientRegistrationData
with the given metadata and no
static registrations.
Trait Implementations§
Source§impl Clone for ClientRegistrationData
impl Clone for ClientRegistrationData
Source§fn clone(&self) -> ClientRegistrationData
fn clone(&self) -> ClientRegistrationData
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 ClientRegistrationData
impl Debug for ClientRegistrationData
Source§impl From<Raw<ClientMetadata>> for ClientRegistrationData
impl From<Raw<ClientMetadata>> for ClientRegistrationData
Source§fn from(value: Raw<ClientMetadata>) -> Self
fn from(value: Raw<ClientMetadata>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ClientRegistrationData
impl RefUnwindSafe for ClientRegistrationData
impl Send for ClientRegistrationData
impl Sync for ClientRegistrationData
impl Unpin for ClientRegistrationData
impl UnwindSafe for ClientRegistrationData
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,
§impl<T> CompatExt for T
impl<T> CompatExt for T
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