when I build things quickly in rust I tend to do lazy things like this. the visibility of some functions should be made public only if they directly face the caller.
anything in ops that's a trait implemented by Message should be public. any functions that these traits rely on should be pub(crate) only. any functions that only need local visibility should be fn
when I build things quickly in rust I tend to do lazy things like this. the visibility of some functions should be made public only if they directly face the caller.
anything in ops that's a trait implemented by Message should be public. any functions that these traits rely on should be pub(crate) only. any functions that only need local visibility should be fn