pub struct GithubAssetDto {
pub id: i64,
pub name: String,
pub browser_download_url: String,
pub size: i64,
pub content_type: String,
pub created_at: String,
}Fields§
§id: i64§name: String§browser_download_url: String§size: i64§content_type: String§created_at: StringTrait Implementations§
Source§impl Clone for GithubAssetDto
impl Clone for GithubAssetDto
Source§fn clone(&self) -> GithubAssetDto
fn clone(&self) -> GithubAssetDto
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 GithubAssetDto
impl Debug for GithubAssetDto
Source§impl<'de> Deserialize<'de> for GithubAssetDto
impl<'de> Deserialize<'de> for GithubAssetDto
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 GithubAssetDto
impl RefUnwindSafe for GithubAssetDto
impl Send for GithubAssetDto
impl Sync for GithubAssetDto
impl Unpin for GithubAssetDto
impl UnsafeUnpin for GithubAssetDto
impl UnwindSafe for GithubAssetDto
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