pub trait Context {
// Required methods
fn objects(&self) -> &impl ObjectServer;
fn log(&self, msg: &str);
}Required Methods§
Sourcefn objects(&self) -> &impl ObjectServer
fn objects(&self) -> &impl ObjectServer
Доступ к подсистеме объектов
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.