gRPC trailers that are known at the end of a stream.
(&self)
| 87 | impl LazyTrailers { |
| 88 | /// gRPC trailers that are known at the end of a stream. |
| 89 | pub fn get(&self) -> Option<MetadataMap> { |
| 90 | self.trailers.lock().expect("poisoned").clone() |
| 91 | } |
| 92 | } |