[][src]Struct panda::models::channel::Embed

pub struct Embed { /* fields omitted */ }

Implementations

impl Embed[src]

pub fn new() -> Self[src]

pub fn set_title(&mut self, title: impl Into<String>) -> &mut Self[src]

pub fn set_description(&mut self, description: impl Into<String>) -> &mut Self[src]

pub fn set_url(&mut self, url: impl Into<String>) -> &mut Self[src]

pub fn set_color(&mut self, _color: u64) -> &mut Self[src]

pub fn add_image(&mut self, image: EmbedImage) -> &mut Self[src]

pub fn add_thumbnail(&mut self, thumbnail: EmbedThumbnail) -> &mut Self[src]

pub fn add_video(&mut self, video: EmbedVideo) -> &mut Self[src]

pub fn set_provider(&mut self, provider: EmbedProvider) -> &mut Self[src]

pub fn set_author(&mut self, author: EmbedAuthor) -> &mut Self[src]

pub fn add_field(
    &mut self,
    name: impl Into<String>,
    value: impl Into<String>,
    inline: bool
) -> &mut Self
[src]

Trait Implementations

impl Debug for Embed[src]

impl Default for Embed[src]

impl<'de> Deserialize<'de> for Embed[src]

impl Serialize for Embed[src]

Auto Trait Implementations

impl RefUnwindSafe for Embed

impl Send for Embed

impl Sync for Embed

impl Unpin for Embed

impl UnwindSafe for Embed

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]