pub enum VerificationLevel {
UnverifiedIdentity,
VerificationViolation,
UnsignedDevice,
None(DeviceLinkProblem),
MismatchedSender,
}Expand description
The sub-enum containing detailed information on why a message is considered to be unverified.
Variants§
UnverifiedIdentity
The message was sent by a user identity we have not verified.
VerificationViolation
The message was sent by a user identity we have not verified, but the user was previously verified.
UnsignedDevice
The message was sent by a device not linked to (signed by) any user identity.
None(DeviceLinkProblem)
We weren’t able to link the message back to any device. This might be because the message claims to have been sent by a device which we have not been able to obtain (for example, because the device was since deleted) or because the key to decrypt the message was obtained from an insecure source.
MismatchedSender
The sender field on the event does not match the owner of the device
that established the Megolm session.
Trait Implementations§
Source§impl Clone for VerificationLevel
impl Clone for VerificationLevel
Source§fn clone(&self) -> VerificationLevel
fn clone(&self) -> VerificationLevel
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for VerificationLevel
impl Debug for VerificationLevel
Source§impl<'de> Deserialize<'de> for VerificationLevel
impl<'de> Deserialize<'de> for VerificationLevel
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<VerificationLevel, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<VerificationLevel, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl Display for VerificationLevel
impl Display for VerificationLevel
Source§impl PartialEq for VerificationLevel
impl PartialEq for VerificationLevel
Source§impl Serialize for VerificationLevel
impl Serialize for VerificationLevel
Source§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,
impl Eq for VerificationLevel
impl StructuralPartialEq for VerificationLevel
Auto Trait Implementations§
impl Freeze for VerificationLevel
impl RefUnwindSafe for VerificationLevel
impl Send for VerificationLevel
impl Sync for VerificationLevel
impl Unpin for VerificationLevel
impl UnwindSafe for VerificationLevel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DeserialiseFromJs for Twhere
T: DeserializeOwned,
impl<T> DeserialiseFromJs for Twhere
T: DeserializeOwned,
Source§fn deserialise_from_js(js: JsValue) -> Result<T, Error>
fn deserialise_from_js(js: JsValue) -> Result<T, Error>
serde_wasm_bindgen.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
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> SerialiseToJs for Twhere
T: Serialize,
impl<T> SerialiseToJs for Twhere
T: Serialize,
Source§fn serialise_to_js(&self) -> Result<JsValue, Error>
fn serialise_to_js(&self) -> Result<JsValue, Error>
JsValue, most likely using serde_wasm_bindgen.Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.