pub struct StoryDownload<T> {
pub sanitized_title: String,
pub epub_response: T,
pub metadata: StoryResponse,
}Fields§
§sanitized_title: StringSanitized Title ( Follow {id}-{title} )
epub_response: TThe generated EPUB file, either as a PathBuf or Vec
metadata: StoryResponseThe full story metadata fetched from Wattpad.
Auto Trait Implementations§
impl<T> Freeze for StoryDownload<T>where
T: Freeze,
impl<T> RefUnwindSafe for StoryDownload<T>where
T: RefUnwindSafe,
impl<T> Send for StoryDownload<T>where
T: Send,
impl<T> Sync for StoryDownload<T>where
T: Sync,
impl<T> Unpin for StoryDownload<T>where
T: Unpin,
impl<T> UnwindSafe for StoryDownload<T>where
T: UnwindSafe,
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