Struct ruma_client_api::uiaa::RegistrationToken
source · pub struct RegistrationToken {
pub token: String,
pub session: Option<String>,
}
Available on crate features
client
or server
only.Expand description
Data for registration token-based UIAA flow.
See the spec for how to use this.
Fields§
§token: String
The registration token.
session: Option<String>
The value of the session key given by the homeserver, if any.
Implementations§
Trait Implementations§
source§impl Clone for RegistrationToken
impl Clone for RegistrationToken
source§fn clone(&self) -> RegistrationToken
fn clone(&self) -> RegistrationToken
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 RegistrationToken
impl Debug for RegistrationToken
source§impl<'de> Deserialize<'de> for RegistrationToken
impl<'de> Deserialize<'de> for RegistrationToken
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more