pub struct Comic {
pub month: String,
pub num: i32,
pub year: String,
pub safe_title: String,
pub transcript: String,
pub alt: String,
pub img: String,
pub title: String,
pub day: String,
}
Fields§
§month: String
§num: i32
§year: String
§safe_title: String
§transcript: String
§alt: String
§img: String
§title: String
§day: String
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Comic
impl RefUnwindSafe for Comic
impl Send for Comic
impl Sync for Comic
impl Unpin for Comic
impl UnwindSafe for Comic
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