{
struct T(m::P);
mod m {
pub struct P(());
use super::T; // ошибка
impl T {
pub fn new() -> Self {
T(P(()))
}
}
}
let t = T::new();
}
Почему бы не сделать T pub?
Это как? Вынести из функции?
https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=49aff4d3fe054f8209d7cd732f70c79b ?
Хорошо, но дальше необходимо вот это: fn foo() { struct S; // macro begin mod inner { pub struct T(m::P, core::marker::PhantomData<S>); // error[E0412]: cannot find type `S` in this scope mod m { pub struct P(()); use super::T; impl T { pub fn new() -> Self { T(P(()), core::marker::PhantomData) } } } } use inner::T; // macro end let t = T::new(); }
От одной вложенности можно избавиться: fn foo() { struct S; // macro begin mod m { pub struct T(P, core::marker::PhantomData<S>); // error[E0412]: cannot find type `S` in this scope pub struct P(()); impl T { pub fn new() -> Self { T(P(()), core::marker::PhantomData) } } } use m::T; // macro end let t = T::new(); }
Обсуждают сегодня