pub struct Novel {
pub name: String,
pub author_name: String,
pub introduction: Option<Vec<String>>,
pub cover_image: Arc<RwLock<Option<DynamicImage>>>,
pub volumes: Vec<Volume>,
}Fields§
§name: String§introduction: Option<Vec<String>>§cover_image: Arc<RwLock<Option<DynamicImage>>>§volumes: Vec<Volume>Auto Trait Implementations§
impl !RefUnwindSafe for Novel
impl Send for Novel
impl Sync for Novel
impl Unpin for Novel
impl !UnwindSafe for Novel
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