diff options
author | Teddy Wing | 2022-03-18 00:05:48 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-18 00:05:48 +0100 |
commit | 2cf56295d64a42ee6e4d86b1932077480bb51984 (patch) | |
tree | dab559771d3e29d32b1385b462f83e68c9485e0c /src/yaml/sql.rs | |
parent | bd16ac71423ea5abd3d406d8f9fe579f3fec8ee0 (diff) | |
download | yaqlite-2cf56295d64a42ee6e4d86b1932077480bb51984.tar.bz2 |
yaml::sql::Yaml: Make this type `pub(crate)`
It doesn't need to be completely public.
Diffstat (limited to 'src/yaml/sql.rs')
-rw-r--r-- | src/yaml/sql.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yaml/sql.rs b/src/yaml/sql.rs index 26ef45f..99353c3 100644 --- a/src/yaml/sql.rs +++ b/src/yaml/sql.rs @@ -3,7 +3,7 @@ use yaml_rust::yaml; use std::borrow::Cow; -pub struct Yaml<'a>(pub Cow<'a, yaml::Yaml>); +pub(crate) struct Yaml<'a>(pub Cow<'a, yaml::Yaml>); // impl<'a, Y> From<Y> for Yaml<'a> // where Y: Into<yaml_rust::Yaml> |