pub struct Join;
Implementations§
Trait Implementations§
Source§impl Action for Join
impl Action for Join
Source§fn probe<'life0, 'async_trait>(
&'life0 self,
_runtime: Runtime,
) -> Pin<Box<dyn Future<Output = Result<Probe, ActionError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn probe<'life0, 'async_trait>(
&'life0 self,
_runtime: Runtime,
) -> Pin<Box<dyn Future<Output = Result<Probe, ActionError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Probe the action for specific information.
Source§fn run<'life0, 'async_trait>(
&'life0 self,
_runtime: Runtime,
_op: Operation,
) -> Pin<Box<dyn Future<Output = Result<Option<ActionOutput>, ActionError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn run<'life0, 'async_trait>(
&'life0 self,
_runtime: Runtime,
_op: Operation,
) -> Pin<Box<dyn Future<Output = Result<Option<ActionOutput>, ActionError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Run the action. Read more
Source§fn display_name(&self) -> String
fn display_name(&self) -> String
Get the display name of the action.
Source§fn load_state<'life0, 'life1, 'async_trait>(
&'life0 self,
_builder: &'life1 mut RuntimeBuilder,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn load_state<'life0, 'life1, 'async_trait>(
&'life0 self,
_builder: &'life1 mut RuntimeBuilder,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
Load required state.
Auto Trait Implementations§
impl Freeze for Join
impl RefUnwindSafe for Join
impl Send for Join
impl Sync for Join
impl Unpin for Join
impl UnwindSafe for Join
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