nushell/src/traits.rs

29 lines
595 B
Rust
Raw Normal View History

2019-07-24 00:22:11 +02:00
use crate::prelude::*;
use std::fmt;
pub struct Debuggable<'a, T: ToDebug> {
inner: &'a T,
source: &'a str,
}
impl<T: ToDebug> fmt::Display for Debuggable<'_, T> {
2019-07-24 00:22:11 +02:00
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.inner.fmt_debug(f, self.source)
}
}
pub trait HasTag {
fn tag(&self) -> Tag;
2019-07-24 00:22:11 +02:00
}
pub trait ToDebug: Sized {
fn debug<'a>(&'a self, source: &'a str) -> Debuggable<'a, Self> {
2019-07-24 00:22:11 +02:00
Debuggable {
inner: self,
source,
}
}
fn fmt_debug(&self, f: &mut fmt::Formatter, source: &str) -> fmt::Result;
}