Enum matrix_sdk::encryption::LocalTrust
source · pub enum LocalTrust {
Verified = 0,
BlackListed = 1,
Ignored = 2,
Unset = 3,
}
Available on crate feature
e2e-encryption
only.Expand description
The local trust state of a device.
Variants§
Verified = 0
The device has been verified and is trusted.
BlackListed = 1
The device been blacklisted from communicating.
Ignored = 2
The trust state of the device is being ignored.
Unset = 3
The trust state is unset.
Trait Implementations§
source§impl Clone for LocalTrust
impl Clone for LocalTrust
source§fn clone(&self) -> LocalTrust
fn clone(&self) -> LocalTrust
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<UT> ConvertError<UT> for LocalTrust
impl<UT> ConvertError<UT> for LocalTrust
source§impl Debug for LocalTrust
impl Debug for LocalTrust
source§impl<'de> Deserialize<'de> for LocalTrust
impl<'de> Deserialize<'de> for LocalTrust
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LocalTrust, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LocalTrust, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<UT> FfiConverter<UT> for LocalTrust
impl<UT> FfiConverter<UT> for LocalTrust
§type FfiType = RustBuffer
type FfiType = RustBuffer
The low-level type used for passing values of this type over the FFI. Read more
source§fn lower(v: LocalTrust) -> RustBuffer
fn lower(v: LocalTrust) -> RustBuffer
Lower a rust value of the target type, into an FFI value of type Self::FfiType. Read more
source§fn try_lift(buf: RustBuffer) -> Result<LocalTrust, Error>
fn try_lift(buf: RustBuffer) -> Result<LocalTrust, Error>
Lift a rust value of the target type, from an FFI value of type Self::FfiType. Read more
source§fn write(obj: LocalTrust, buf: &mut Vec<u8>)
fn write(obj: LocalTrust, buf: &mut Vec<u8>)
Write a rust value into a buffer, to send over the FFI in serialized form. Read more
source§fn try_read(buf: &mut &[u8]) -> Result<LocalTrust, Error>
fn try_read(buf: &mut &[u8]) -> Result<LocalTrust, Error>
Read a rust value from a buffer, received over the FFI in serialized form. Read more
source§const TYPE_ID_META: MetadataBuffer = _
const TYPE_ID_META: MetadataBuffer = _
Type ID metadata, serialized into a MetadataBuffer.
source§impl From<i64> for LocalTrust
impl From<i64> for LocalTrust
source§fn from(state: i64) -> LocalTrust
fn from(state: i64) -> LocalTrust
Converts to this type from the input type.
source§impl<UT> Lift<UT> for LocalTrust
impl<UT> Lift<UT> for LocalTrust
type FfiType = <LocalTrust as FfiConverter<UT>>::FfiType
fn try_lift(v: <LocalTrust as Lift<UT>>::FfiType) -> Result<LocalTrust, Error>
fn try_read(buf: &mut &[u8]) -> Result<LocalTrust, Error>
source§fn try_lift_from_rust_buffer(v: RustBuffer) -> Result<Self, Error>
fn try_lift_from_rust_buffer(v: RustBuffer) -> Result<Self, Error>
Convenience method
source§impl<UT> LiftRef<UT> for LocalTrust
impl<UT> LiftRef<UT> for LocalTrust
type LiftType = LocalTrust
source§impl<UT> LiftReturn<UT> for LocalTrust
impl<UT> LiftReturn<UT> for LocalTrust
§type ReturnType = <LocalTrust as Lift<UT>>::FfiType
type ReturnType = <LocalTrust as Lift<UT>>::FfiType
FFI return type for trait interfaces
source§fn try_lift_successful_return(
v: <LocalTrust as LiftReturn<UT>>::ReturnType,
) -> Result<LocalTrust, Error>
fn try_lift_successful_return( v: <LocalTrust as LiftReturn<UT>>::ReturnType, ) -> Result<LocalTrust, Error>
Lift a successfully returned value from a trait interface
source§fn lift_foreign_return(
ffi_return: Self::ReturnType,
call_status: RustCallStatus,
) -> Self
fn lift_foreign_return( ffi_return: Self::ReturnType, call_status: RustCallStatus, ) -> Self
Lift a foreign returned value from a trait interface Read more
source§fn lift_error(_buf: RustBuffer) -> Self
fn lift_error(_buf: RustBuffer) -> Self
Lift a Rust value for a callback interface method error result Read more
source§fn handle_callback_unexpected_error(e: UnexpectedUniFFICallbackError) -> Self
fn handle_callback_unexpected_error(e: UnexpectedUniFFICallbackError) -> Self
Lift a Rust value for an unexpected callback interface error Read more
source§impl<UT> Lower<UT> for LocalTrust
impl<UT> Lower<UT> for LocalTrust
type FfiType = <LocalTrust as FfiConverter<UT>>::FfiType
fn lower(obj: LocalTrust) -> <LocalTrust as Lower<UT>>::FfiType
fn write(obj: LocalTrust, buf: &mut Vec<u8>)
source§fn lower_into_rust_buffer(obj: Self) -> RustBuffer
fn lower_into_rust_buffer(obj: Self) -> RustBuffer
Convenience method
source§impl<UT> LowerError<UT> for LocalTrust
impl<UT> LowerError<UT> for LocalTrust
source§fn lower_error(obj: LocalTrust) -> RustBuffer
fn lower_error(obj: LocalTrust) -> RustBuffer
Lower this value for scaffolding function return Read more
source§impl<UT> LowerReturn<UT> for LocalTrust
impl<UT> LowerReturn<UT> for LocalTrust
§type ReturnType = <LocalTrust as Lower<UT>>::FfiType
type ReturnType = <LocalTrust as Lower<UT>>::FfiType
The type that should be returned by scaffolding functions for this type. Read more
source§fn lower_return(
obj: LocalTrust,
) -> Result<<LocalTrust as LowerReturn<UT>>::ReturnType, RustBuffer>
fn lower_return( obj: LocalTrust, ) -> Result<<LocalTrust as LowerReturn<UT>>::ReturnType, RustBuffer>
Lower this value for scaffolding function return Read more
source§impl PartialEq for LocalTrust
impl PartialEq for LocalTrust
source§fn eq(&self, other: &LocalTrust) -> bool
fn eq(&self, other: &LocalTrust) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LocalTrust
impl Serialize for LocalTrust
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,
Serialize this value into the given Serde serializer. Read more
source§impl<UT> TypeId<UT> for LocalTrust
impl<UT> TypeId<UT> for LocalTrust
const TYPE_ID_META: MetadataBuffer = _
impl Copy for LocalTrust
impl Eq for LocalTrust
impl StructuralPartialEq for LocalTrust
Auto Trait Implementations§
impl Freeze for LocalTrust
impl RefUnwindSafe for LocalTrust
impl Send for LocalTrust
impl Sync for LocalTrust
impl Unpin for LocalTrust
impl UnwindSafe for LocalTrust
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<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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
)§impl<T> CompatExt for T
impl<T> CompatExt for T
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.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.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
Converts
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>
Converts
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 more