Struct matrix_sdk::encryption::recovery::futures::Reset
source · pub struct Reset<'a> { /* private fields */ }
Expand description
Named future for the Recovery::reset_key()
method.
Implementations§
source§impl<'a> Reset<'a>
impl<'a> Reset<'a>
sourcepub fn with_passphrase(self, passphrase: &'a str) -> Self
pub fn with_passphrase(self, passphrase: &'a str) -> Self
In addition to the recovery key the Recovery::reset_key()
method
returns, allow this passphrase to be used for the
Recovery::recover()
method.
Trait Implementations§
source§impl<'a> IntoFuture for Reset<'a>
impl<'a> IntoFuture for Reset<'a>
§type Output = Result<String, RecoveryError>
type Output = Result<String, RecoveryError>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = <Reset<'a> as IntoFuture>::Output> + Send + 'a>>
type IntoFuture = Pin<Box<dyn Future<Output = <Reset<'a> as IntoFuture>::Output> + Send + 'a>>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'a> Freeze for Reset<'a>
impl<'a> !RefUnwindSafe for Reset<'a>
impl<'a> Send for Reset<'a>
impl<'a> Sync for Reset<'a>
impl<'a> Unpin for Reset<'a>
impl<'a> !UnwindSafe for Reset<'a>
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, 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>
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