TakesPoints

This commit is contained in:
AF 2023-05-07 16:26:19 +00:00
parent 0340c25c86
commit 96f697e285
3 changed files with 7 additions and 1 deletions

@ -1 +1 @@
Subproject commit c33989ee8688d3dc1cba629069be4ee2ba6d3793 Subproject commit 343baf150fe86ad6cd3594828068d42e7bc25b18

View File

@ -4,6 +4,7 @@
mod addresses; mod addresses;
mod hashing; mod hashing;
mod points;
mod resolution; mod resolution;
mod resolver_origin; mod resolver_origin;
mod serialization; mod serialization;

5
src/core/points.rs Normal file
View File

@ -0,0 +1,5 @@
use super::*;
pub trait TakesPoints<'a, Ctx: 'a + Context> {
fn take<A: Mentionable<'a, Ctx>>(&mut self, point: Point<'a, Ctx, A>);
}