//! Built-in `Automorph` implementations for standard types.
//!
//! This module contains implementations of [`Automorph`](crate::Automorph)
//! for commonly used Rust types.
mod arrays;
mod bytes;
mod collections;
mod marker;
mod net;
pub mod option;
mod path;
mod primitives;
mod ranges;
mod serde_types;
mod smart_pointers;
mod strings;
mod time;
mod tuples;
mod wrappers;
#[cfg(test)]
mod tests;