pub struct GithubReleaseAsset {
pub name: String,
pub download_url: String,
}Expand description
An asset from a GitHub release.
Fields§
§name: StringThe name of the asset.
download_url: StringThe download URL for the asset.
Trait Implementations§
Source§impl Clone for GithubReleaseAsset
impl Clone for GithubReleaseAsset
Source§fn clone(&self) -> GithubReleaseAsset
fn clone(&self) -> GithubReleaseAsset
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GithubReleaseAsset
impl RefUnwindSafe for GithubReleaseAsset
impl Send for GithubReleaseAsset
impl Sync for GithubReleaseAsset
impl Unpin for GithubReleaseAsset
impl UnsafeUnpin for GithubReleaseAsset
impl UnwindSafe for GithubReleaseAsset
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