Pending a correct test of request cancellation
This commit is contained in:
@@ -27,12 +27,12 @@ impl OwnedAtom for SymAtom {
|
||||
async fn val(&self) -> Cow<'_, Self::Data> { Cow::Owned(SymAtomData(self.0.tok().to_api())) }
|
||||
}
|
||||
impl Supports<ToStringMethod> for SymAtom {
|
||||
async fn handle<'a>(
|
||||
async fn handle(
|
||||
&self,
|
||||
hand: Box<dyn orchid_base::ReqHandle<'a> + '_>,
|
||||
hand: Box<dyn orchid_base::ReqHandle>,
|
||||
req: ToStringMethod,
|
||||
) -> std::io::Result<orchid_base::Receipt<'a>> {
|
||||
hand.reply(&req, &self.0.to_string()).await
|
||||
) -> std::io::Result<orchid_base::Receipt> {
|
||||
hand.reply(&req, self.0.to_string()).await
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user