Skip to main content

epub_parser/
image.rs

1#[derive(Debug, Clone, Default)]
2pub struct Image {
3    pub id: String,
4    pub href: String,
5    pub media_type: String,
6    pub content: Option<Vec<u8>>,
7}