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§
fn get_mut_dynamic_node(&mut self) -> &mut DynamicNode
Provided Methods§
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.