Trait IUserIdAssumptionNode

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

    // Provided methods
    fn with_user_id(&mut self, user_id: impl Into<u64>) -> &mut Self { ... }
    fn with_assuming_process_id(
        &mut self,
        assuming_process_id: impl Into<u64>,
    ) -> &mut Self { ... }
    fn with_assumed_timestamp(
        &mut self,
        assumed_timestamp: impl Into<u64>,
    ) -> &mut Self { ... }
}

Required Methods§

Provided Methods§

Source

fn with_user_id(&mut self, user_id: impl Into<u64>) -> &mut Self

Source

fn with_assuming_process_id( &mut self, assuming_process_id: impl Into<u64>, ) -> &mut Self

Source

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