pub struct GitRelease {
pub name: String,
pub tag_name: String,
pub body: String,
pub artifacts: Vec<GitReleaseArtifact>,
}
Fields§
§name: String
§tag_name: String
§body: String
§artifacts: Vec<GitReleaseArtifact>
Trait Implementations§
Source§impl Clone for GitRelease
impl Clone for GitRelease
Source§fn clone(&self) -> GitRelease
fn clone(&self) -> GitRelease
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for GitRelease
impl RefUnwindSafe for GitRelease
impl Send for GitRelease
impl Sync for GitRelease
impl Unpin for GitRelease
impl UnwindSafe for GitRelease
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