Searched refs:chain (Results 1 – 5 of 5) sorted by relevance
1 use crate::chain::Chain;
13 pub mod chain; module
90 let mut in_packet = h.marshal()?.chain(raw_data.take(length)); in unmarshaller()
1293 fn fn_not_expected_chain(_cert: &[Vec<u8>], chain: &[rustls::Certificate]) -> Result<()> { in fn_not_expected_chain()1294 if !chain.is_empty() { in fn_not_expected_chain()1300 fn fn_expected_chain(_cert: &[Vec<u8>], chain: &[rustls::Certificate]) -> Result<()> { in fn_expected_chain()1301 if chain.is_empty() { in fn_expected_chain()
225 let mut chain = api.interceptor_registry.build_chain("")?; in new() localVariable227 chain.add(stats_interceptor.clone()); in new()229 (Arc::new(chain), stats_interceptor) in new()