1 2 3 4 5 6 7 8
use crate::contextual; #[derive(Clone)] pub(super) struct MyStruct(pub(super) u8); contextual! { pub(super) FromAnotherFile(OTHER): MyStruct = MyStruct(42); }