use super::*;
impl Display for SmartLink {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
match self {
Self::Bare { link } => Display::fmt(link, f),
Self::EMail { link } => Display::fmt(link, f),
Self::Reciprocal { .. } => unimplemented!(),
Self::TagBlock { .. } => unimplemented!(),
Self::Reference { .. } => unimplemented!(),
Self::Path { .. } => unimplemented!(),
Self::PathWithText { .. } => unimplemented!(),
Self::TagInline { .. } => unimplemented!(),
}
}
}