tfa: ignore uncompilable doctest

the doctest code uses non-public `fold`, up for re-evaluation if this
gets moved to proxmox-serde and made public..

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2021-12-30 11:04:39 +01:00
parent 2fa269fb05
commit 3ee175c798

View File

@ -1,6 +1,7 @@
//! Submodule for generic serde helpers. //! Submodule for generic serde helpers.
//! //!
//! FIXME: This should appear in `proxmox-serde`. //! FIXME: This should appear in `proxmox-serde`.
//! FIXME: doc test below is disabled since serde-tools is not public (yet)!
use std::fmt; use std::fmt;
use std::marker::PhantomData; use std::marker::PhantomData;
@ -67,7 +68,7 @@ where
/// implementation details. /// implementation details.
/// ///
/// Example: /// Example:
/// ``` /// ```ignore
/// # use serde::Deserialize; /// # use serde::Deserialize;
/// ///
/// #[derive(Deserialize)] /// #[derive(Deserialize)]