[][src]Struct mdbookshelf::ManifestEntry

pub struct ManifestEntry {
    pub commit_sha: String,
    pub epub_size: u64,
    pub last_modified: String,
    pub path: PathBuf,
    pub repo_url: String,
    pub title: String,
    pub url: String,
}

A manifest entry for the generated EPUB

Fields

commit_sha: String

The commit sha

epub_size: u64

The size of the EPUB in bytes

last_modified: String

The last modified date of the book (i.e. the datetime of the last commit)

path: PathBuf

The path to the generated EPUB

repo_url: String

The book repository URL

title: String

The book title

url: String

The book online version URL

Trait Implementations

impl Default for ManifestEntry[src]

impl Serialize for ManifestEntry[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,