pub trait CommandBuilderExt: GatewayClient + Sized {
// Provided method
fn command(
&self,
domain: impl Into<String>,
root: Uuid,
) -> CommandBuilder<'_, Self> { ... }
}Expand description
Extension trait for creating command builders.
Provided Methods§
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.