Home
last modified time | relevance | path

Searched refs:Chain (Results 1 – 3 of 3) sorted by relevance

/webrtc/interceptor/src/
H A Dregistry.rs1 use crate::chain::Chain;
35 pub fn build_chain(&self, id: &str) -> Result<Chain> { in build_chain() argument
37 return Ok(Chain::new(vec![Arc::new(NoOp {})])); in build_chain()
42 Ok(Chain::new(interceptors?)) in build_chain()
H A Dchain.rs9 pub struct Chain { struct
13 impl Chain { argument
16 Chain { interceptors } in new()
25 impl Interceptor for Chain { implementation
/webrtc/util/src/marshal/
H A Dexact_size_buf.rs6 buf::{Chain, Take},
61 impl<T, U> ExactSizeBuf for Chain<T, U> implementation