Enum matrix_sdk_crypto::store::SecretInfo
source · pub enum SecretInfo {
KeyRequest(SupportedKeyInfo),
SecretRequest(SecretName),
}
Expand description
An enum over the various secret request types we can have.
Variants§
KeyRequest(SupportedKeyInfo)
Info for the m.room_key_request
variant
SecretRequest(SecretName)
Info for the m.secret.request
variant
Implementations§
Trait Implementations§
source§impl Clone for SecretInfo
impl Clone for SecretInfo
source§fn clone(&self) -> SecretInfo
fn clone(&self) -> SecretInfo
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 SecretInfo
impl Debug for SecretInfo
source§impl<'de> Deserialize<'de> for SecretInfo
impl<'de> Deserialize<'de> for SecretInfo
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<SecretName> for SecretInfo
impl From<SecretName> for SecretInfo
source§fn from(i: SecretName) -> Self
fn from(i: SecretName) -> Self
Converts to this type from the input type.
source§impl<T> From<T> for SecretInfowhere
T: Into<SupportedKeyInfo>,
impl<T> From<T> for SecretInfowhere
T: Into<SupportedKeyInfo>,
source§impl PartialEq for SecretInfo
impl PartialEq for SecretInfo
source§fn eq(&self, other: &SecretInfo) -> bool
fn eq(&self, other: &SecretInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SecretInfo
impl Serialize for SecretInfo
impl Eq for SecretInfo
impl StructuralPartialEq for SecretInfo
Auto Trait Implementations§
impl Freeze for SecretInfo
impl RefUnwindSafe for SecretInfo
impl Send for SecretInfo
impl Sync for SecretInfo
impl Unpin for SecretInfo
impl UnwindSafe for SecretInfo
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
)§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<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