Struct elefren::entities::card::Card[][src]

pub struct Card {
    pub url: String,
    pub title: String,
    pub description: String,
    pub image: Option<String>,
    // some fields omitted
}

A card of a status.

Fields

The url associated with the card.

The title of the card.

The card description.

The image associated with the card, if any.

Trait Implementations

impl Debug for Card
[src]

Formats the value using the given formatter. Read more

impl Clone for Card
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Card

impl Sync for Card