pub trait IsSupport {
// Provided method
fn is_support(&self) -> bool { ... }
}Expand description
Trait for support role detection.
Provided Methods§
Sourcefn is_support(&self) -> bool
fn is_support(&self) -> bool
Returns whether the user is support.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".