pub struct DownloadUrlError {
pub url: String,
pub error_message: String,
pub error_type: String,
pub http_status_code: Option<u16>,
pub retry_count: u32,
}Fields§
§url: String§error_message: String§error_type: String§http_status_code: Option<u16>§retry_count: u32Trait Implementations§
Source§impl Clone for DownloadUrlError
impl Clone for DownloadUrlError
Source§fn clone(&self) -> DownloadUrlError
fn clone(&self) -> DownloadUrlError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DownloadUrlError
impl Debug for DownloadUrlError
Source§impl<'de> Deserialize<'de> for DownloadUrlError
impl<'de> Deserialize<'de> for DownloadUrlError
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 DownloadUrlError
impl RefUnwindSafe for DownloadUrlError
impl Send for DownloadUrlError
impl Sync for DownloadUrlError
impl Unpin for DownloadUrlError
impl UnsafeUnpin for DownloadUrlError
impl UnwindSafe for DownloadUrlError
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