Struct matrix_sdk::encryption::backups::futures::WaitForSteadyState
source · pub struct WaitForSteadyState<'a> { /* private fields */ }
Expand description
Named future for the Backups::wait_for_steady_state()
method.
Implementations§
source§impl<'a> WaitForSteadyState<'a>
impl<'a> WaitForSteadyState<'a>
sourcepub fn subscribe_to_progress(
&self,
) -> impl Stream<Item = Result<UploadState, BroadcastStreamRecvError>>
pub fn subscribe_to_progress( &self, ) -> impl Stream<Item = Result<UploadState, BroadcastStreamRecvError>>
Subscribe to the progress of the backup upload step while waiting for it to settle down.
sourcepub fn with_delay(self, delay: Duration) -> Self
pub fn with_delay(self, delay: Duration) -> Self
Trait Implementations§
source§impl<'a> Debug for WaitForSteadyState<'a>
impl<'a> Debug for WaitForSteadyState<'a>
source§impl<'a> IntoFuture for WaitForSteadyState<'a>
impl<'a> IntoFuture for WaitForSteadyState<'a>
§type Output = Result<(), SteadyStateError>
type Output = Result<(), SteadyStateError>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = <WaitForSteadyState<'a> as IntoFuture>::Output> + Send + 'a>>
type IntoFuture = Pin<Box<dyn Future<Output = <WaitForSteadyState<'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 WaitForSteadyState<'a>
impl<'a> !RefUnwindSafe for WaitForSteadyState<'a>
impl<'a> Send for WaitForSteadyState<'a>
impl<'a> Sync for WaitForSteadyState<'a>
impl<'a> Unpin for WaitForSteadyState<'a>
impl<'a> !UnwindSafe for WaitForSteadyState<'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