Struct sp_core::traits::TaskExecutorExt
source · pub struct TaskExecutorExt(pub Box<dyn SpawnNamed>);
Expand description
Task executor extension.
Tuple Fields§
§0: Box<dyn SpawnNamed>
Implementations§
source§impl TaskExecutorExt
impl TaskExecutorExt
sourcepub fn new(spawn_handle: impl SpawnNamed + Send + 'static) -> Self
pub fn new(spawn_handle: impl SpawnNamed + Send + 'static) -> Self
New instance of task executor extension.
Trait Implementations§
source§impl Deref for TaskExecutorExt
impl Deref for TaskExecutorExt
source§impl DerefMut for TaskExecutorExt
impl DerefMut for TaskExecutorExt
source§impl Extension for TaskExecutorExt
impl Extension for TaskExecutorExt
source§fn as_mut_any(&mut self) -> &mut dyn Any
fn as_mut_any(&mut self) -> &mut dyn Any
Return the extension as
&mut dyn Any
. Read moresource§impl From<Box<dyn SpawnNamed + 'static, Global>> for TaskExecutorExt
impl From<Box<dyn SpawnNamed + 'static, Global>> for TaskExecutorExt
source§fn from(inner: Box<dyn SpawnNamed>) -> Self
fn from(inner: Box<dyn SpawnNamed>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for TaskExecutorExt
impl Send for TaskExecutorExt
impl Sync for TaskExecutorExt
impl Unpin for TaskExecutorExt
impl !UnwindSafe for TaskExecutorExt
Blanket Implementations§
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.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, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.