Trait BinImplExt

Source
pub trait BinImplExt: Sealed + ObjectSubclass {
    // Provided methods
    fn parent_add_element(&self, element: &Element) -> Result<(), LoggableError> { ... }
    fn parent_remove_element(
        &self,
        element: &Element,
    ) -> Result<(), LoggableError> { ... }
    fn parent_do_latency(&self) -> Result<(), LoggableError> { ... }
    fn parent_handle_message(&self, message: Message) { ... }
}

Provided Methods§

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.

Implementors§

Source§

impl<T> BinImplExt for T
where T: BinImpl,