From aa4f47baf8dd0d39a2f3d0b81fbc29c25bd4a17d Mon Sep 17 00:00:00 2001 From: timofey Date: Sun, 7 May 2023 17:09:17 +0000 Subject: [PATCH] localise `MentionableExt` --- src/core/typeless.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/typeless.rs b/src/core/typeless.rs index 1b94713..9ebf535 100644 --- a/src/core/typeless.rs +++ b/src/core/typeless.rs @@ -170,7 +170,7 @@ impl<'a> TypelessError<'a> { } } -pub trait MentionableExt<'a, Ctx: 'a + Context>: Mentionable<'a, Ctx> { +trait MentionableExt<'a, Ctx: 'a + Context>: Mentionable<'a, Ctx> { /// [Vec] of [Point]s as used by [`Mentionable::topology`]. fn points_vec(&self) -> Vec>>; }