fix(api): remove obsolete type

This commit is contained in:
Kat Marchán 2022-04-23 01:38:05 -07:00
parent 21f7dbf106
commit 40b04418c9
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 0 additions and 8 deletions

View File

@ -82,14 +82,6 @@ pub enum KdlErrorKind {
Other,
}
/// Coversion errors for converting [`KdlNode`] to another type via [`TryFrom`] or [`TryInto`].
#[derive(Debug, Clone, Eq, PartialEq, Error)]
#[error("Failed to convert from KdlNodeValue::{variant} to {expected}.")]
pub struct TryFromKdlNodeValueError {
pub(crate) expected: &'static str,
pub(crate) variant: &'static str,
}
#[derive(Debug, Clone, Eq, PartialEq)]
pub(crate) struct KdlParseError<I> {
pub(crate) input: I,