Make conn::Result public

This commit is contained in:
Joscha 2023-01-21 14:05:22 +01:00
parent e5f1b21303
commit f243e2243d

View file

@ -68,7 +68,7 @@ impl From<serde_json::Error> for Error {
impl error::Error for Error {} impl error::Error for Error {}
type Result<T> = result::Result<T, Error>; pub type Result<T> = result::Result<T, Error>;
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct Joining { pub struct Joining {