Trait IUserIdNode

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

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

Required Methods§

Provided Methods§

Source

fn with_user_id(&mut self, user_id: 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§