Skip to content

Commit 548b4b4

Browse files
committed
deploy: a69b799
1 parent 1ced3f1 commit 548b4b4

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

pr/52/docs/src/iroh_blobs/get.rs.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@
965965

966966
<span class="kw">use </span>anyhow::Result;
967967
<span class="kw">use </span>bao_tree::{io::fsm::BaoContentItem, ChunkNum};
968-
<span class="kw">use </span>iroh::endpoint::{<span class="self">self</span>, RecvStream, SendStream};
968+
<span class="kw">use </span>iroh::endpoint::{<span class="self">self</span>, ClosedStream, RecvStream, SendStream, WriteError};
969969
<span class="kw">use </span>serde::{Deserialize, Serialize};
970970
<span class="kw">use </span>tracing::{debug, error};
971971

@@ -1134,10 +1134,10 @@
11341134
</span>RequestTooBig,
11351135
<span class="doccomment">/// Error when writing the request to the [`SendStream`].
11361136
</span><span class="attr">#[error(<span class="string">"write: {0}"</span>)]
1137-
</span>Write(<span class="attr">#[from] </span>quinn::WriteError),
1137+
</span>Write(<span class="attr">#[from] </span>WriteError),
11381138
<span class="doccomment">/// Quic connection is closed.
11391139
</span><span class="attr">#[error(<span class="string">"closed"</span>)]
1140-
</span>Closed(<span class="attr">#[from] </span>quinn::ClosedStream),
1140+
</span>Closed(<span class="attr">#[from] </span>ClosedStream),
11411141
<span class="doccomment">/// A generic io error
11421142
</span><span class="attr">#[error(<span class="string">"io {0}"</span>)]
11431143
</span>Io(io::Error),

pr/52/docs/src/iroh_blobs/get/error.rs.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190
<a href="#189" id="189">189</a>
191191
<a href="#190" id="190">190</a></pre></div><pre class="rust"><code><span class="doccomment">//! Error returned from get operations
192192

193-
</span><span class="kw">use </span>iroh::endpoint;
193+
</span><span class="kw">use </span>iroh::endpoint::{<span class="self">self</span>, ClosedStream};
194194

195195
<span class="kw">use </span><span class="kw">crate</span>::util::progress::ProgressSendError;
196196

@@ -263,7 +263,7 @@
263263
// TODO(@divma): don't see how this is reachable but let's just not use the peer
264264
</span>GetError::Io(e.into())
265265
}
266-
e @ quinn::ConnectionError::CidsExhausted =&gt; {
266+
e @ ConnectionError::CidsExhausted =&gt; {
267267
<span class="comment">// &gt; The connection could not be created because not enough of the CID space
268268
// &gt; is available
269269
</span>GetError::Io(e.into())
@@ -287,8 +287,8 @@
287287
}
288288
}
289289
}
290-
<span class="kw">impl </span>From&lt;quinn::ClosedStream&gt; <span class="kw">for </span>GetError {
291-
<span class="kw">fn </span>from(value: quinn::ClosedStream) -&gt; <span class="self">Self </span>{
290+
<span class="kw">impl </span>From&lt;ClosedStream&gt; <span class="kw">for </span>GetError {
291+
<span class="kw">fn </span>from(value: ClosedStream) -&gt; <span class="self">Self </span>{
292292
GetError::Io(value.into())
293293
}
294294
}

pr/52/docs/type.impl/alloc/boxed/struct.Box.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)