Struct sentry_core::SentryFuture 
source · pub struct SentryFuture<F> { /* private fields */ }Expand description
A future that binds a Hub to its execution.
This activates the given hub for the duration of the inner futures poll
method. Users usually do not need to construct this type manually, but
rather use the FutureExt::bind_hub method instead.
Implementations§
Trait Implementations§
source§impl<F: Debug> Debug for SentryFuture<F>
 
impl<F: Debug> Debug for SentryFuture<F>
source§impl<F> Future for SentryFuture<F>where
    F: Future,
 
impl<F> Future for SentryFuture<F>where F: Future,
Auto Trait Implementations§
impl<F> RefUnwindSafe for SentryFuture<F>where F: RefUnwindSafe,
impl<F> Send for SentryFuture<F>where F: Send,
impl<F> Sync for SentryFuture<F>where F: Sync,
impl<F> Unpin for SentryFuture<F>where F: Unpin,
impl<F> UnwindSafe for SentryFuture<F>where F: UnwindSafe,
Blanket Implementations§
source§impl<F> IntoFuture for Fwhere
    F: Future,
 
impl<F> IntoFuture for Fwhere F: Future,
§type IntoFuture = F
 
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
 
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more