pub struct Release {
Show 13 fields pub index: usize, pub tag_name: String, pub target_commitish: Option<String>, pub name: String, pub body: String, pub draft: bool, pub prerelease: bool, pub publisher_id: usize, pub publisher_name: String, pub publisher_email: Option<String>, pub assets: Option<Vec<ReleaseAsset>>, pub created: String, pub published: String,
}
Expand description

Assets that constitute a release for a given tag.

Fields

index: usize

Unique identifier

tag_name: String

Git tag name of the release.

target_commitish: Option<String>

Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. Unused if the Git tag already exists.

name: String

The name of the release

body: String

Text describing the contents of the release.

draft: bool

True if the release is a draft.

prerelease: bool

True if the release is a pre-release.

publisher_id: usize

Unique identifier of the user who authored the release.

publisher_name: String

Name of the user who authored the release.

publisher_email: Option<String>

Email of the user who authored the release.

assets: Option<Vec<ReleaseAsset>>

List of assets associated with the release.

created: String

Creation time

published: String

Publication time.

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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.

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.