mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-02 07:20:35 +00:00
chore: fix cargo docs warnings (#1362)
This PR simply fixes some cargo docs warnings.
This commit is contained in:
parent
5e435b1220
commit
396d9f42a5
@ -641,14 +641,14 @@ impl Dispatch {
|
||||
/// `T`.
|
||||
#[inline]
|
||||
pub fn is<T: Any>(&self) -> bool {
|
||||
Subscriber::is::<T>(&*self.subscriber)
|
||||
<dyn Subscriber>::is::<T>(&*self.subscriber)
|
||||
}
|
||||
|
||||
/// Returns some reference to the `Subscriber` this `Dispatch` forwards to
|
||||
/// if it is of type `T`, or `None` if it isn't.
|
||||
#[inline]
|
||||
pub fn downcast_ref<T: Any>(&self) -> Option<&T> {
|
||||
Subscriber::downcast_ref(&*self.subscriber)
|
||||
<dyn Subscriber>::downcast_ref(&*self.subscriber)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -361,15 +361,15 @@ impl<F, T> Format<F, T> {
|
||||
|
||||
/// Use the given [`timer`] for log message timestamps.
|
||||
///
|
||||
/// See [`time`] for the provided timer implementations.
|
||||
/// See [`time` module] for the provided timer implementations.
|
||||
///
|
||||
/// Note that using the `chrono` feature flag enables the
|
||||
/// additional time formatters [`ChronoUtc`] and [`ChronoLocal`].
|
||||
///
|
||||
/// [`time`]: ./time/index.html
|
||||
/// [`timer`]: ./time/trait.FormatTime.html
|
||||
/// [`ChronoUtc`]: ./time/struct.ChronoUtc.html
|
||||
/// [`ChronoLocal`]: ./time/struct.ChronoLocal.html
|
||||
/// [`timer`]: super::time::FormatTime
|
||||
/// [`time` module]: mod@super::time
|
||||
/// [`ChronoUtc`]: super::time::ChronoUtc
|
||||
/// [`ChronoLocal`]: super::time::ChronoLocal
|
||||
pub fn with_timer<T2>(self, timer: T2) -> Format<F, T2> {
|
||||
Format {
|
||||
format: self.format,
|
||||
|
Loading…
x
Reference in New Issue
Block a user