pub enum DownloadResult {
Success {
downloaded: Vec<TmcExerciseDownload>,
skipped: Vec<TmcExerciseDownload>,
},
Failure {
downloaded: Vec<TmcExerciseDownload>,
skipped: Vec<TmcExerciseDownload>,
failed: Vec<(TmcExerciseDownload, Vec<String>)>,
},
}Variants§
Success
Failure
Fields
§
downloaded: Vec<TmcExerciseDownload>§
skipped: Vec<TmcExerciseDownload>§
failed: Vec<(TmcExerciseDownload, Vec<String>)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for DownloadResult
impl RefUnwindSafe for DownloadResult
impl Send for DownloadResult
impl Sync for DownloadResult
impl Unpin for DownloadResult
impl UnwindSafe for DownloadResult
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