Enum ruma_common::matrix_uri::UriAction
source · #[non_exhaustive]pub enum UriAction {
Join,
Chat,
}
Expand description
The intent of a Matrix URI.
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.
Join
Join the room referenced by the URI.
The client should prompt for confirmation prior to joining the room, if the user isn’t already part of the room.
Chat
Start a direct chat with the user referenced by the URI.
Clients supporting a form of Canonical DMs should reuse existing DMs instead of creating new ones if available. The client should prompt for confirmation prior to creating the DM, if the user isn’t being redirected to an existing canonical DM.
Implementations§
Trait Implementations§
source§impl PartialEq for UriAction
impl PartialEq for UriAction
impl Eq for UriAction
impl StructuralPartialEq for UriAction
Auto Trait Implementations§
impl Freeze for UriAction
impl RefUnwindSafe for UriAction
impl Send for UriAction
impl Sync for UriAction
impl Unpin for UriAction
impl UnwindSafe for UriAction
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
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.