pub enum DownloadLinkResponse {
Json(ApiResponse<String>),
Redirect(String),
}Variants§
Json(ApiResponse<String>)
Redirect(String)
Trait Implementations§
Source§impl Debug for DownloadLinkResponse
impl Debug for DownloadLinkResponse
Source§impl<'de> Deserialize<'de> for DownloadLinkResponse
impl<'de> Deserialize<'de> for DownloadLinkResponse
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 DownloadLinkResponse
impl RefUnwindSafe for DownloadLinkResponse
impl Send for DownloadLinkResponse
impl Sync for DownloadLinkResponse
impl Unpin for DownloadLinkResponse
impl UnsafeUnpin for DownloadLinkResponse
impl UnwindSafe for DownloadLinkResponse
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