MCPcopy Index your code
hub / github.com/RustPython/RustPython / reader

Method reader

crates/stdlib/src/ssl/compat.rs:319–324  ·  view source on GitHub ↗

Get reader for plaintext data (rustls native type)

(&mut self)

Source from the content-addressed store, hash-verified

317
318 /// Get reader for plaintext data (rustls native type)
319 pub fn reader(&mut self) -> rustls::Reader<'_> {
320 match self {
321 TlsConnection::Client(conn) => conn.reader(),
322 TlsConnection::Server(conn) => conn.reader(),
323 }
324 }
325
326 /// Get writer for plaintext data (rustls native type)
327 pub fn writer(&mut self) -> rustls::Writer<'_> {

Callers 3

readMethod · 0.45
pendingMethod · 0.45
try_read_plaintextFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected