Get the current [`ClockParameters`]
(&self)
| 188 | .more_accurate_than(current_clock_parameters, self.max_dispersion) => |
| 189 | { |
| 190 | // We currently have clock_parameters, and the new value is more accurate. Replace it. |
| 191 | tracing::debug!(?clock_parameters, "Clock Parameters updated."); |
| 192 | *current_clock_parameters = clock_parameters; |
| 193 | self.clock_parameters.as_ref() |
| 194 | } |
| 195 | Some(current_clock_parameters) => { |