diff options
author | Teddy Wing | 2022-03-21 02:11:16 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-21 02:11:50 +0100 |
commit | 5e48997ecb4df8ce9507e6229df457d1065b19bc (patch) | |
tree | 3d44a0bb9bb73ceadc9580bac12d5e7f612b732f /src/yaml/sql.rs | |
parent | 9816ad12c931e18ea7cc0e6cfaf3914a173e173e (diff) | |
download | yaqlite-5e48997ecb4df8ce9507e6229df457d1065b19bc.tar.bz2 |
Add placeholders for code documentation reminders
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() } |