@drewtato thanks your correction.
Also the private supertrait works for any scope. Just replace pub(crate)
with pub(some_module)
(or don't have it at all) in the examples.
I've tried it without pub
, but then the struct can't import the module if they belong to different modules. The correct syntax for pub(some_module)
I thinks is pub(in <module_name>)
,this way almost meets my aim, but it has a limitation-- the trait and struct(s) have to belong to the same (parent) module.
I wouldn’t quite be convinced by this. This sounds a bit like in OOP where there are “protected” methods visible in the class, and all classes that extend it , which is a situation in which the method, really, is barely private at all.
@steffahn , yes, indeed, I am trying to make it something like the protected
method in some OOP language.
The precise meaning of visibility “within a trait” or especially “within a type” aren’t even clear to me in Rust, even if we wanted to add such a feature.
I mean for trait A: B
, the methods defined in B
can be used in A
or any type implementing A
, which would also be forced to implement B
.
Now give it a second thought, and I would say: I agree that my aim for this protect
like feature is somehow meaningless technically, because when someone can be accessible to the same crate where the trait(s) and struct(s) are defined, be he/she is responsible for defining the struct or using the struct instance, there is no need to hide any method. But practically, I still think this feature is useful:
for example, the trait A
and B
, struct(s) need trait A
, and instances using these structs are defined in 3 modules at the same folder level (the pub(in <module_name>)
way is not useful in the case),which are in the charge of 3 groups in a team, the group people using the struct(s) would be annoyed by the methods exposed from B
.
Note: the reason for why trait B
exists is exactly because there is some method in trait A
need some abstract logic which no need to be exposed to struct(s) instance user. like this:
trait B{
fn get_xxx_code(&self) -> u32; // how it is produced depends on the implementor
}
pub trait A:B{
// type(struct/enums) users only need to know what the code is but don't care how it is produced
fn print_xxx_code(&self){
println!("the xxx code is: {}", self.get_xxx_code());
}
}
I am not sure if this is proper example requiring the protect
like feature for encapsulation, I just came up with it. Anyway, this post is just a minor case in my project, I am gonna leave it behind at present if it is not feasible.