Trait Principal

Source
pub trait Principal:
    Debug
    + Clone
    + FromRequest
    + 'static {
    // Required method
    fn get_id(&self) -> &str;
}

Required Methods§

Source

fn get_id(&self) -> &str

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§