Enum ruma_common::api::VersioningDecision
source · pub enum VersioningDecision {
Unstable,
Stable {
any_deprecated: bool,
all_deprecated: bool,
any_removed: bool,
},
Removed,
}
Available on crate feature
api
only.Expand description
A versioning “decision” derived from a set of Matrix versions.
Variants§
Unstable
The unstable endpoint should be used.
Stable
The stable endpoint should be used.
Fields
Removed
This endpoint was removed in all versions, it should not be used.
Trait Implementations§
source§impl Clone for VersioningDecision
impl Clone for VersioningDecision
source§fn clone(&self) -> VersioningDecision
fn clone(&self) -> VersioningDecision
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 VersioningDecision
impl Debug for VersioningDecision
source§impl Hash for VersioningDecision
impl Hash for VersioningDecision
source§impl PartialEq for VersioningDecision
impl PartialEq for VersioningDecision
impl Copy for VersioningDecision
impl Eq for VersioningDecision
impl StructuralPartialEq for VersioningDecision
Auto Trait Implementations§
impl Freeze for VersioningDecision
impl RefUnwindSafe for VersioningDecision
impl Send for VersioningDecision
impl Sync for VersioningDecision
impl Unpin for VersioningDecision
impl UnwindSafe for VersioningDecision
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.