pub struct UnsubscribeFromPath {
pub path: Path,
pub req_id: ProviderReqId,
}Fields§
§path: Path§req_id: ProviderReqIdTrait Implementations§
Source§impl Interaction for UnsubscribeFromPath
impl Interaction for UnsubscribeFromPath
Source§impl InteractionHandler<UnsubscribeFromPath> for ProviderSession
impl InteractionHandler<UnsubscribeFromPath> for ProviderSession
Source§fn handle<'life0, 'life1, 'async_trait>(
&'life0 mut self,
msg: UnsubscribeFromPath,
_ctx: &'life1 mut Context<Self>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn handle<'life0, 'life1, 'async_trait>(
&'life0 mut self,
msg: UnsubscribeFromPath,
_ctx: &'life1 mut Context<Self>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Asyncronous method that receives incoming message.
Auto Trait Implementations§
impl Freeze for UnsubscribeFromPath
impl RefUnwindSafe for UnsubscribeFromPath
impl Send for UnsubscribeFromPath
impl Sync for UnsubscribeFromPath
impl Unpin for UnsubscribeFromPath
impl UnsafeUnpin for UnsubscribeFromPath
impl UnwindSafe for UnsubscribeFromPath
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