1use crate::*;
2
3impl<Endpoint> std::error::Error for Connect<Endpoint> where Endpoint: xwt_core::endpoint::Connect {}
4
5impl<Endpoint> std::error::Error for Accept<Endpoint> where Endpoint: xwt_core::endpoint::Accept {}
6
7impl<TAccepting> std::error::Error for Accepting<TAccepting> where
8 TAccepting: xwt_core::endpoint::accept::Accepting
9{
10}
11
12impl<Session> std::error::Error for OpenBi<Session> where Session: xwt_core::session::stream::OpenBi {}
13
14impl<Session> std::error::Error for OpenUni<Session> where
15 Session: xwt_core::session::stream::OpenUni
16{
17}