Enum graph_rs_sdk::error::download::BlockingDownloadError   
source · pub enum BlockingDownloadError {
    Io(ThreadedIoError),
    TargetDoesNotExist(String),
    Request(Error),
    FileNameTooLong,
    NoFileName,
    FileExists(String),
    HttpError(Error),
}Variants§
Io(ThreadedIoError)
TargetDoesNotExist(String)
Request(Error)
FileNameTooLong
NoFileName
FileExists(String)
HttpError(Error)
Trait Implementations§
source§impl Debug for BlockingDownloadError
 
impl Debug for BlockingDownloadError
source§impl Display for BlockingDownloadError
 
impl Display for BlockingDownloadError
source§impl Error for BlockingDownloadError
 
impl Error for BlockingDownloadError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for BlockingDownloadError
 
impl From<Error> for BlockingDownloadError
source§fn from(source: Error) -> BlockingDownloadError
 
fn from(source: Error) -> BlockingDownloadError
Converts to this type from the input type.
source§impl From<Error> for BlockingDownloadError
 
impl From<Error> for BlockingDownloadError
source§fn from(err: Error) -> BlockingDownloadError
 
fn from(err: Error) -> BlockingDownloadError
Converts to this type from the input type.
source§impl From<Error> for BlockingDownloadError
 
impl From<Error> for BlockingDownloadError
source§fn from(source: Error) -> BlockingDownloadError
 
fn from(source: Error) -> BlockingDownloadError
Converts to this type from the input type.
source§impl From<ThreadedIoError> for BlockingDownloadError
 
impl From<ThreadedIoError> for BlockingDownloadError
source§fn from(source: ThreadedIoError) -> BlockingDownloadError
 
fn from(source: ThreadedIoError) -> BlockingDownloadError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BlockingDownloadError
impl !RefUnwindSafe for BlockingDownloadError
impl Send for BlockingDownloadError
impl !Sync for BlockingDownloadError
impl Unpin for BlockingDownloadError
impl !UnwindSafe for BlockingDownloadError
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