(mut self, name: &'static str, context: D)
| 129 | /// ``` |
| 130 | #[must_use] |
| 131 | pub fn append_context<D>(mut self, name: &'static str, context: D) -> Self |
| 132 | where |
| 133 | D: fmt::Display + Send + Sync + 'static, |
| 134 | { |
| 135 | self.context.push((name, Box::new(context))); |
| 136 | self |
| 137 | } |
| 138 | |
| 139 | /// Access the contained [`Output`]. |
| 140 | /// |
no outgoing calls