pub struct Context<W: Clone> { /* private fields */ }
Implementations§
Source§impl<W: Clone> Context<W>
impl<W: Clone> Context<W>
pub async fn is_initialized(&self) -> bool
pub async fn is_shutting_down(&self) -> bool
pub fn world(&self) -> &W
pub fn cancel_token(&mut self) -> &mut CancelToken ⓘ
Trait Implementations§
Source§impl<W: Clone> RequestWriter for Context<W>
impl<W: Clone> RequestWriter for Context<W>
fn write_request<'life0, 'async_trait, R, P>(
&'life0 mut self,
params: Option<R::Params>,
) -> Pin<Box<dyn Future<Output = Result<Response<R::Result>, Error>> + 'async_trait>>where
R: 'async_trait + Request<Params = P>,
P: 'async_trait + Serialize + DeserializeOwned + Debug,
Self: 'async_trait,
'life0: 'async_trait,
fn write_notification<'life0, 'async_trait, N, P>(
&'life0 mut self,
params: Option<N::Params>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'async_trait>>where
N: 'async_trait + Notification<Params = P>,
P: 'async_trait + Serialize + DeserializeOwned + Debug,
Self: 'async_trait,
'life0: 'async_trait,
fn cancel<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl<W> Freeze for Context<W>where
W: Freeze,
impl<W> !RefUnwindSafe for Context<W>
impl<W> !Send for Context<W>
impl<W> !Sync for Context<W>
impl<W> Unpin for Context<W>where
W: Unpin,
impl<W> !UnwindSafe for Context<W>
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