Enum matrix_sdk_base::ruma::api::client::account::register::RegistrationKind
#[non_exhaustive]pub enum RegistrationKind {
Guest,
User,
}
Available on crate feature
api
and (crate features client
or server
) only.Expand description
The kind of account being registered.
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.
Guest
A guest account
These accounts may have limited permissions and may not be supported by all servers.
User
A regular user account
Trait Implementations§
§impl Clone for RegistrationKind
impl Clone for RegistrationKind
§fn clone(&self) -> RegistrationKind
fn clone(&self) -> RegistrationKind
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 RegistrationKind
impl Debug for RegistrationKind
§impl Default for RegistrationKind
impl Default for RegistrationKind
§fn default() -> RegistrationKind
fn default() -> RegistrationKind
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for RegistrationKind
impl<'de> Deserialize<'de> for RegistrationKind
§fn deserialize<__D>(
__deserializer: __D
) -> Result<RegistrationKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<RegistrationKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq for RegistrationKind
impl PartialEq for RegistrationKind
§fn eq(&self, other: &RegistrationKind) -> bool
fn eq(&self, other: &RegistrationKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for RegistrationKind
impl Serialize for RegistrationKind
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for RegistrationKind
impl StructuralEq for RegistrationKind
impl StructuralPartialEq for RegistrationKind
Auto Trait Implementations§
impl RefUnwindSafe for RegistrationKind
impl Send for RegistrationKind
impl Sync for RegistrationKind
impl Unpin for RegistrationKind
impl UnwindSafe for RegistrationKind
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.