pub struct DownloadAssetInput {
pub url: String,
}Expand description
Input for downloading an asset
Fields§
§url: StringURL to download
Trait Implementations§
Source§impl Clone for DownloadAssetInput
impl Clone for DownloadAssetInput
Source§fn clone(&self) -> DownloadAssetInput
fn clone(&self) -> DownloadAssetInput
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 DownloadAssetInput
impl Debug for DownloadAssetInput
Source§impl<'de> Deserialize<'de> for DownloadAssetInput
impl<'de> Deserialize<'de> for DownloadAssetInput
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 DownloadAssetInput
impl RefUnwindSafe for DownloadAssetInput
impl Send for DownloadAssetInput
impl Sync for DownloadAssetInput
impl Unpin for DownloadAssetInput
impl UnwindSafe for DownloadAssetInput
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