From c776f0902660db734550520d043d94a575c8db54 Mon Sep 17 00:00:00 2001 From: Edward Shen Date: Fri, 9 Apr 2021 22:00:09 -0400 Subject: [PATCH] make UpstreamError pub --- src/fs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs.rs b/src/fs.rs index 1fc6d81..d704929 100644 --- a/src/fs.rs +++ b/src/fs.rs @@ -90,7 +90,7 @@ impl FromFsStream { } /// Represents some upstream error. -struct UpstreamError; +pub struct UpstreamError; impl Stream for FromFsStream { type Item = Result;