Trait Subject

Source
pub trait Subject:
    Display
    + Send
    + Sync
    + Sized
    + Clone
    + 'static { }
Expand description

Trait to identify authenticated subjects

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.

Implementations on Foreign Types§

Source§

impl<T: Subject + ?Sized> Subject for Box<T>
where Box<T>: Display + Send + Sync + Sized + Clone + 'static,

Source§

impl<T: Subject + ?Sized> Subject for Arc<T>
where Arc<T>: Display + Send + Sync + Sized + Clone + 'static,

Implementors§