pub struct RuntimeWebAdapter { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for RuntimeWebAdapter
impl Clone for RuntimeWebAdapter
Source§fn clone(&self) -> RuntimeWebAdapter
fn clone(&self) -> RuntimeWebAdapter
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl WebPluginAdapter for RuntimeWebAdapter
impl WebPluginAdapter for RuntimeWebAdapter
fn take_streams<'a>( &'a self, ) -> Pin<Box<dyn Future<Output = Result<WebRuntimeStreams, WebError>> + Send + 'a>>
fn thread_start<'a>( &'a self, params: ThreadStartParams, ) -> Pin<Box<dyn Future<Output = Result<String, WebError>> + Send + 'a>>
fn thread_resume<'a>( &'a self, thread_id: &'a str, params: ThreadStartParams, ) -> Pin<Box<dyn Future<Output = Result<String, WebError>> + Send + 'a>>
fn turn_start<'a>( &'a self, turn_params: Value, ) -> Pin<Box<dyn Future<Output = Result<Value, WebError>> + Send + 'a>>
fn thread_archive<'a>( &'a self, thread_id: &'a str, ) -> Pin<Box<dyn Future<Output = Result<(), WebError>> + Send + 'a>>
fn respond_approval_ok<'a>( &'a self, approval_id: &'a str, result: Value, ) -> Pin<Box<dyn Future<Output = Result<(), WebError>> + Send + 'a>>
fn pending_approval_ids(&self) -> Vec<String>
fn plugin_contract_version(&self) -> PluginContractVersion
Auto Trait Implementations§
impl Freeze for RuntimeWebAdapter
impl !RefUnwindSafe for RuntimeWebAdapter
impl Send for RuntimeWebAdapter
impl Sync for RuntimeWebAdapter
impl Unpin for RuntimeWebAdapter
impl UnsafeUnpin for RuntimeWebAdapter
impl !UnwindSafe for RuntimeWebAdapter
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