pub trait UseAuthenticationProperties: Clone {
// Required method
fn set_authentication(&mut self, auth: Authentication);
}
Expand description
A trait which component’s properties must implement in order to receive the context.
Required Methods§
fn set_authentication(&mut self, auth: Authentication)
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.