pub struct HttpAssetInfo {
pub download_url: String,
pub name: String,
pub size: u64,
pub last_modified: Option<DateTime<Utc>>,
pub etag: Option<String>,
}Fields§
§download_url: String§name: String§size: u64§last_modified: Option<DateTime<Utc>>§etag: Option<String>Trait Implementations§
Source§impl Clone for HttpAssetInfo
impl Clone for HttpAssetInfo
Source§fn clone(&self) -> HttpAssetInfo
fn clone(&self) -> HttpAssetInfo
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 moreAuto Trait Implementations§
impl Freeze for HttpAssetInfo
impl RefUnwindSafe for HttpAssetInfo
impl Send for HttpAssetInfo
impl Sync for HttpAssetInfo
impl Unpin for HttpAssetInfo
impl UnsafeUnpin for HttpAssetInfo
impl UnwindSafe for HttpAssetInfo
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