fmt_ext 0.1.2

A simple interface for extending external types with custom implementations of `Debug` and `Display` traits.
Documentation
//! Traits that provide a custom [Display].
//!
//! # Example
//!
//! The example below shows how implement custom display formatting for an external type that does
//! not implement [Display].
//!
//! ```
//! use std::fmt;
//!
//! use fmt_ext::{display::*, DisplayExt};
//!
//! // Oops, this type does not implement `Display`...
//! struct ExternCrateType(i32);
//!
//! // Create a type that will implement custom display...
//! struct ExternCrateTypeDisplay;
//!
//! // Implement custom display...
//! impl CustomDisplay for ExternCrateTypeDisplay {
//!     type Target = ExternCrateType;
//!
//!     fn fmt_target(target: &Self::Target, f: &mut fmt::Formatter<'_>) -> fmt::Result {
//!         write!(f, "Extern type has a value - {}!", target.0)
//!     }
//! }
//!
//! // Attach custom display implementation to the target type...
//! impl AttachDisplay<ExternCrateTypeDisplay> for ExternCrateType {}
//!
//! // Look! We have just call `display` method on the target type...
//! let foo = ExternCrateType(42);
//! println!("{}", foo.display());
//! ```
//!
//! [Display]: core::fmt::Display

use core::fmt;

/// A marker that helps compiler find the [CustomDisplay] implementation.
pub trait AttachDisplay<D> {}

/// A trait that proxying a custom [Display] for a target type.
///
/// [Display]: fmt::Display
pub trait CustomDisplay {
    /// A target type for which custom formatting is implemented.
    type Target: ?Sized;

    /// Should formats a target type.
    fn fmt_target(target: &Self::Target, f: &mut fmt::Formatter<'_>) -> fmt::Result;
}