Enum ruma_client_api::r0::account::ThirdPartyIdRemovalStatus [−][src]
#[non_exhaustive]
pub enum ThirdPartyIdRemovalStatus {
NoSupport,
Success,
// some variants omitted
}Expand description
Possible values for deleting or unbinding 3PIDs.
This type can hold an arbitrary string. To check for formats that are not available as a
documented variant here, use its string representation, obtained through .as_str().
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.
Either the homeserver couldn’t determine the right identity server to contact, or the identity server refused the operation.
Success.
Implementations
Trait Implementations
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for ThirdPartyIdRemovalStatus
impl Send for ThirdPartyIdRemovalStatus
impl Sync for ThirdPartyIdRemovalStatus
impl Unpin for ThirdPartyIdRemovalStatus
impl UnwindSafe for ThirdPartyIdRemovalStatus
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more