Line | Count | Source (jump to first uncovered line) |
1 | //! Not public API. Used as `$crate::__private` by macros. | |
2 | ||
3 | #[doc(hidden)] | |
4 | pub use core::marker::{Send, Sized, Sync}; | |
5 | #[doc(hidden)] | |
6 | pub use serde; | |
7 | ||
8 | #[doc(hidden)] | |
9 | pub type Result<T, E> = core::result::Result<T, E>; | |
10 | ||
11 | #[doc(hidden)] | |
12 | 0 | pub fn require_erased_serialize_impl<T>() |
13 | 0 | where |
14 | 0 | T: ?Sized + crate::Serialize, |
15 | 0 | { |
16 | 0 | } |