pub trait TopInstanceInterface: Sized + Debug {
    // Required methods
    fn namespace_capabilities(&self) -> &NamespaceCapabilities;
    fn builtin_capabilities(&self) -> &BuiltinCapabilities;
}
Expand description

A special instance identified with the top of the tree, i.e. component manager’s instance.

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§