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

Method builder

crates/stdlib/src/openssl.rs:1019–1021  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

1017 #[pyclass(flags(BASETYPE, IMMUTABLETYPE), with(Constructor))]
1018 impl PySslContext {
1019 fn builder(&self) -> PyRwLockWriteGuard<'_, SslContextBuilder> {
1020 self.ctx.write()
1021 }
1022 fn ctx(&self) -> PyMappedRwLockReadGuard<'_, ssl::SslContextRef> {
1023 PyRwLockReadGuard::map(self.ctx.read(), builder_as_ctx)
1024 }

Callers 14

set_ciphersMethod · 0.45
set_ecdh_curveMethod · 0.45
set_optionsMethod · 0.45
set_verify_modeMethod · 0.45
set_check_hostnameMethod · 0.45
set_minimum_versionMethod · 0.45
set_maximum_versionMethod · 0.45
set_num_ticketsMethod · 0.45
_set_alpn_protocolsMethod · 0.45
load_verify_locationsMethod · 0.45

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected