Struct serenity::model::EmbedImage
[−]
[src]
pub struct EmbedImage {
pub height: u64,
pub proxy_url: String,
pub url: String,
pub width: u64,
}An image object in an embed.
Fields
height: u64
The height of the image.
proxy_url: String
A proxied URL of the image.
url: String
Source URL of the image.
This only supports HTTP(S).
width: u64
The width of the image.
Trait Implementations
impl Clone for EmbedImage[src]
fn clone(&self) -> EmbedImage[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more