pub struct GithubReleaseDto {
pub id: i64,
pub tag_name: String,
pub name: String,
pub body: String,
pub prerelease: bool,
pub draft: bool,
pub published_at: String,
pub assets: Vec<GithubAssetDto>,
}Fields§
§id: i64§tag_name: String§name: String§body: String§prerelease: bool§draft: bool§published_at: String§assets: Vec<GithubAssetDto>Trait Implementations§
Source§impl Clone for GithubReleaseDto
impl Clone for GithubReleaseDto
Source§fn clone(&self) -> GithubReleaseDto
fn clone(&self) -> GithubReleaseDto
Returns a duplicate 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 moreSource§impl Debug for GithubReleaseDto
impl Debug for GithubReleaseDto
Source§impl<'de> Deserialize<'de> for GithubReleaseDto
impl<'de> Deserialize<'de> for GithubReleaseDto
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GithubReleaseDto
impl RefUnwindSafe for GithubReleaseDto
impl Send for GithubReleaseDto
impl Sync for GithubReleaseDto
impl Unpin for GithubReleaseDto
impl UnsafeUnpin for GithubReleaseDto
impl UnwindSafe for GithubReleaseDto
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