aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread.rs')
-rw-r--r--src/thread.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.rs b/src/thread.rs
index 9634a57..34cebd3 100644
--- a/src/thread.rs
+++ b/src/thread.rs
@@ -33,7 +33,7 @@ impl<'d, 'q> Thread<'d, 'q>
where
'd: 'q
{
- pub fn from_ptr<P>(ptr: *mut ffi::notmuch_thread_t, owner: P) -> Thread<'d, 'q>
+ pub(crate) fn from_ptr<P>(ptr: *mut ffi::notmuch_thread_t, owner: P) -> Thread<'d, 'q>
where
P: Into<ScopedPhantomcow<'q, Query<'d>>>,
{