pub struct Release {Show 14 fields
pub name: String,
pub tag_name: String,
pub description: Option<String>,
pub created_at: DateTime<Utc>,
pub released_at: DateTime<Utc>,
pub upcoming_release: bool,
pub author: Author,
pub commit: Commit,
pub milestones: Option<Vec<Milestone>>,
pub commit_path: String,
pub tag_path: String,
pub assets: ReleaseAssets,
pub evidences: Vec<ReleaseEvidence>,
pub _links: ReleaseLinks,
}
Fields§
§name: String
§tag_name: String
§description: Option<String>
§created_at: DateTime<Utc>
§released_at: DateTime<Utc>
§upcoming_release: bool
§commit: Commit
§milestones: Option<Vec<Milestone>>
§commit_path: String
§tag_path: String
§assets: ReleaseAssets
§evidences: Vec<ReleaseEvidence>
§_links: ReleaseLinks
Trait Implementations§
Source§impl Ord for Release
impl Ord for Release
Source§impl PartialOrd for Release
impl PartialOrd for Release
impl Eq for Release
impl StructuralPartialEq for Release
Auto Trait Implementations§
impl Freeze for Release
impl RefUnwindSafe for Release
impl Send for Release
impl Sync for Release
impl Unpin for Release
impl UnwindSafe for Release
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more