concision_core/nn/traits/
context.rs

1/*
2    Appellation: context <module>
3    Created At: 2025.12.14:06:17:36
4    Contrib: @FL03
5*/
6
7pub trait RawContext {
8    private! {}
9}
10
11/*
12 ************* Implementations *************
13*/
14
15impl RawContext for () {
16    seal! {}
17}