Trait IAuidNode

Source
pub trait IAuidNode {
    // Required method
    fn get_mut_dynamic_node(&mut self) -> &mut DynamicNode;

    // Provided method
    fn with_auid(&mut self, auid: impl Into<u64>) -> &mut Self { ... }
}

Required Methods§

Provided Methods§

Source

fn with_auid(&mut self, auid: impl Into<u64>) -> &mut Self

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§