diff --git a/src/lib.rs b/src/lib.rs index a26d75c..33ca068 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,9 @@ //! # RADN //! Rainbow something something Network. +#![cfg_attr(doc, deny(rustdoc::all))] +#![cfg_attr(doc, allow(missing_docs))] + pub mod atomic; pub mod flow; pub mod func; diff --git a/src/rstd/collections/pair.rs b/src/rstd/collections/pair.rs index 01aee33..9353179 100644 --- a/src/rstd/collections/pair.rs +++ b/src/rstd/collections/pair.rs @@ -107,3 +107,10 @@ impl StaticPairAtomic for PairParseError::B(error) } } + +impl Serializable for (A, B) { + /// [Ser] + fn serialize(&self, serializer: &mut dyn Serializer) { + todo!() + } +}