pub struct ReleaseAsset {Show 13 fields
pub url: String,
pub id: usize,
pub node_id: String,
pub name: String,
pub label: Option<String>,
pub uploader: User,
pub content_type: String,
pub state: String,
pub size: usize,
pub download_count: usize,
pub created_at: DateTime<Local>,
pub updated_at: DateTime<Local>,
pub browser_download_url: String,
}Fields§
§url: String§id: usize§node_id: String§name: String§label: Option<String>§uploader: User§content_type: String§state: String§size: usize§download_count: usize§created_at: DateTime<Local>§updated_at: DateTime<Local>§browser_download_url: StringTrait Implementations§
Source§impl Clone for ReleaseAsset
impl Clone for ReleaseAsset
Source§fn clone(&self) -> ReleaseAsset
fn clone(&self) -> ReleaseAsset
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 ReleaseAsset
impl Debug for ReleaseAsset
Source§impl<'de> Deserialize<'de> for ReleaseAsset
impl<'de> Deserialize<'de> for ReleaseAsset
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 ReleaseAsset
impl RefUnwindSafe for ReleaseAsset
impl Send for ReleaseAsset
impl Sync for ReleaseAsset
impl Unpin for ReleaseAsset
impl UnwindSafe for ReleaseAsset
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