pub struct ActivityObjectAttachments {
    pub content: Option<String>,
    pub display_name: Option<String>,
    pub embed: Option<ActivityObjectAttachmentsEmbed>,
    pub full_image: Option<ActivityObjectAttachmentsFullImage>,
    pub id: Option<String>,
    pub image: Option<ActivityObjectAttachmentsImage>,
    pub object_type: Option<String>,
    pub thumbnails: Option<Vec<ActivityObjectAttachmentsThumbnails>>,
    pub url: Option<String>,
}
Expand description

The media objects attached to this activity.

This type is not used in any activity, and only used as part of another schema.

Fields

content: Option<String>

If the attachment is an article, this property contains a snippet of text from the article. It can also include descriptions for other types.

display_name: Option<String>

The title of the attachment, such as a photo caption or an article title.

embed: Option<ActivityObjectAttachmentsEmbed>

If the attachment is a video, the embeddable link.

full_image: Option<ActivityObjectAttachmentsFullImage>

The full image URL for photo attachments.

id: Option<String>

The ID of the attachment.

image: Option<ActivityObjectAttachmentsImage>

The preview image for photos or videos.

object_type: Option<String>

The type of media object. Possible values include, but are not limited to, the following values:

  • “photo” - A photo.
  • “album” - A photo album.
  • “video” - A video.
  • “article” - An article, specified by a link.
thumbnails: Option<Vec<ActivityObjectAttachmentsThumbnails>>

If the attachment is an album, this property is a list of potential additional thumbnails from the album.

url: Option<String>

The link to the attachment, which should be of type text/html.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more