Trait FindToken
pub trait FindToken<T> {
// Required method
fn find_token(&self, token: T) -> bool;
}Available on crate feature
rustls only.Expand description
Look for a token in self
Required Methods§
fn find_token(&self, token: T) -> bool
fn find_token(&self, token: T) -> bool
Returns true if self contains the token
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".