diff options
Diffstat (limited to 'src/yaml/sql.rs')
-rw-r--r-- | src/yaml/sql.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yaml/sql.rs b/src/yaml/sql.rs index ef72aae..ac60dc3 100644 --- a/src/yaml/sql.rs +++ b/src/yaml/sql.rs @@ -3,9 +3,11 @@ use yaml_rust::yaml; use std::borrow::Cow; +/// TODO #[derive(Debug)] pub(crate) struct Yaml<'a>(pub Cow<'a, yaml::Yaml>); +// TODO: Delete // impl<'a, Y> From<Y> for Yaml<'a> // where Y: Into<yaml_rust::Yaml> // { @@ -17,6 +19,7 @@ pub(crate) struct Yaml<'a>(pub Cow<'a, yaml::Yaml>); // impl From< impl<'a> Yaml<'a> { + /// TODO pub fn into_inner(self) -> yaml::Yaml { self.0.into_owned() } |