localise MentionableExt

This commit is contained in:
AF 2023-05-07 17:09:17 +00:00
parent 8410d6ad7f
commit aa4f47baf8

View File

@ -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`]. /// [Vec] of [Point]s as used by [`Mentionable::topology`].
fn points_vec(&self) -> Vec<Point<'a, Ctx, TypelessMentionable<'a, Ctx>>>; fn points_vec(&self) -> Vec<Point<'a, Ctx, TypelessMentionable<'a, Ctx>>>;
} }