pub trait EmbedExt {
// Required methods
fn icon_url(self, icon_url: String) -> Self;
fn url(self, url: String) -> Self;
fn title(self, title: String) -> Self;
fn description(self, description: String) -> Self;
fn media(self, media: String) -> Self;
fn colour(self, colour: String) -> Self;
}Required Methods§
fn icon_url(self, icon_url: String) -> Self
fn url(self, url: String) -> Self
fn title(self, title: String) -> Self
fn description(self, description: String) -> Self
fn media(self, media: String) -> Self
fn colour(self, colour: String) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".