impl crate::Debug for kdl::KdlError {
fn fmt(&self, f: &mut crate::Formatter) {
f.debug_struct("KdlError")
.field("input", &self.input)
.field("span", &self.span)
.field("label", &self.label)
.field("help", &self.help)
.field("kind", &self.kind)
.finish()
}
}
impl crate::Debug for kdl::KdlErrorKind {
fn fmt(&self, f: &mut crate::Formatter) {
match self {
Self::ParseIntError(__0) => {
f.debug_tuple("ParseIntError").field(__0).finish();
}
Self::ParseFloatError(__0) => {
f.debug_tuple("ParseFloatError").field(__0).finish();
}
Self::Context(__0) => {
f.debug_tuple("Context").field(__0).finish();
}
Self::Other => {
f.debug_tuple("Other").finish();
}
}
}
}
impl crate::Debug for kdl::NodeKey {
fn fmt(&self, f: &mut crate::Formatter) {
match self {
Self::Key(__0) => {
f.debug_tuple("Key").field(__0).finish();
}
Self::Index(__0) => {
f.debug_tuple("Index").field(__0).finish();
}
}
}
}