tor-netdoc 0.41.0

Network document formats used with the Tor protocols.
Documentation
//! Various types that can occur in parsed network documents.
//!
//! Some of the types are parsing adapters: transparent newtypes
//! that can be used for type-driven parsing in netdocs.
//! These are needed (rather than using the underlying value type)
//! in cases where network documents have different syntaxes for the same thing.
//!
//! NOTE: Several of these modules may eventually move elsewhere,
//! or become their own crates.

pub mod family;
pub(crate) mod misc;
pub mod policy;
pub mod relay_flags;
pub mod version;

pub use misc::{Nickname, NotPresent, Unknown};

pub use misc::B64;
pub use misc::{Base64Fingerprint, Fingerprint, Ignored, IgnoredItemOrObjectValue};
pub use misc::{DigestName, IdentifiedDigest};
pub use misc::{Iso8601TimeNoSp, Iso8601TimeSp};

use crate::NormalItemArgument;

impl NormalItemArgument for std::net::Ipv4Addr {}
impl NormalItemArgument for std::net::SocketAddr {}
impl NormalItemArgument for std::net::SocketAddrV4 {}