pub struct FileDownloadUrl {
pub id: IdentityOrInstance,
pub download_url: String,
}Expand description
Download URL for a file
Fields§
§id: IdentityOrInstanceID of the file.
download_url: StringTemporary download URL for the file.
Trait Implementations§
Source§impl Debug for FileDownloadUrl
impl Debug for FileDownloadUrl
Source§impl<'de> Deserialize<'de> for FileDownloadUrl
impl<'de> Deserialize<'de> for FileDownloadUrl
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 FileDownloadUrl
impl RefUnwindSafe for FileDownloadUrl
impl Send for FileDownloadUrl
impl Sync for FileDownloadUrl
impl Unpin for FileDownloadUrl
impl UnwindSafe for FileDownloadUrl
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