Enum matrix_sdk_base::ruma::api::VersioningDecision
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
Fields
The stable endpoint should be used.
Removed
This endpoint was removed in all versions, it should not be used.
Trait Implementations§
§impl Clone for VersioningDecision
impl Clone for VersioningDecision
§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 more§impl Debug for VersioningDecision
impl Debug for VersioningDecision
§impl Hash for VersioningDecision
impl Hash for VersioningDecision
§impl PartialEq for VersioningDecision
impl PartialEq for VersioningDecision
§fn eq(&self, other: &VersioningDecision) -> bool
fn eq(&self, other: &VersioningDecision) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for VersioningDecision
impl Eq for VersioningDecision
impl StructuralEq for VersioningDecision
impl StructuralPartialEq for VersioningDecision
Auto Trait Implementations§
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
§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.