doc: hide IpfsInner in docs

this seems to still keep Ipfs methods through deref available, lets hope
it's the same in docsrs.
This commit is contained in:
Joonas Koivunen 2020-09-22 17:56:03 +03:00
parent 29202efe0b
commit 34a6cf3de1

View File

@ -249,9 +249,9 @@ impl<Types: IpfsTypes> Clone for Ipfs<Types> {
}
}
/// Ipfs struct creates a new IPFS node and is the main entry point
/// for interacting with IPFS.
/// The internal shared implementation of [`Ipfs`].
#[derive(Debug)]
#[doc(hidden)]
pub struct IpfsInner<Types: IpfsTypes> {
pub span: Span,
repo: Repo<Types>,