pub trait M2BClientEditExt<'a> {
// Required methods
fn set_description(self, description: &'a str) -> Self;
fn set_talk_power_granted(self, talk_power_granted: bool) -> Self;
}
Required Methods§
fn set_description(self, description: &'a str) -> Self
fn set_talk_power_granted(self, talk_power_granted: bool) -> Self
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.