Struct matrix_sdk_crypto::Device [−][src]
pub struct Device { /* fields omitted */ }Expand description
A device represents a E2EE capable client of an user.
Implementations
Start a interactive verification with this Device
Returns a Sas object and to-device request that needs to be sent out.
Get the trust state of the device.
Set the local trust state of the device to the given state.
This won’t affect any cross signing trust state, this only sets a flag marking to have the given trust state.
Arguments
trust_state- The new trust state that should be set for the device.
pub async fn encrypt_session(
    &self, 
    session: InboundGroupSession, 
    message_index: Option<u32>
) -> Result<(Session, EncryptedEventContent), OlmError>
pub async fn encrypt_session(
    &self, 
    session: InboundGroupSession, 
    message_index: Option<u32>
) -> Result<(Session, EncryptedEventContent), OlmError>Encrypt the given inbound group session as a forwarded room key for this device.
Methods from Deref<Target = ReadOnlyDevice>
Get the human readable name of the device.
Get the key of the given key algorithm belonging to this device.
Get a map containing all the device signatures.
Get the trust state of the device.
Is the device locally marked as trusted.
Is the device locally marked as blacklisted.
Blacklisted devices won’t receive any group sessions.
Get the list of algorithms this device supports.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Deviceimpl !UnwindSafe for DeviceBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
type Output = T
type Output = TShould always be Self