YSLHJU3IKZNAYQJ6JTN2VN3KRXFO3OW4N2C3L2DAYNSJVYOI5OPQC
7FRJYUI62VW257VVFQXND6OKSAILVTHGEJCXFE6CG6FIOIUTDVYAC
.await .map_err(|_| ()) } /// Close a channel. pub async fn close(&mut self, id: ChannelId) -> Result<(), ()> { self.sender .send((id, ChannelMsg::Close))
.await
.map_err(|_| ())
}
/// Close a channel.
pub async fn close(&mut self, id: ChannelId) -> Result<(), ()> {
self.sender
.send((id, ChannelMsg::Close))
Some((id, ChannelMsg::Close)) => { session.close(id); }
Some((id, ChannelMsg::Close)) => {
session.close(id);
Close,