Made `new` constructor for the Connection public

This commit is contained in:
Babur Makhmudov 2022-01-28 14:40:36 +03:00
parent b7b7bd2cbf
commit 448ef6f932
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ pub struct Connection<R, IO> {
impl<R, IO> Connection<R, IO> {
/// Construct new `Connection` from request and IO parts.
pub(crate) fn new(req: R, io: IO) -> Self {
pub fn new(req: R, io: IO) -> Self {
Self { req, io }
}
}