[][src]Struct mobi::Mobi

pub struct Mobi {
    pub contents: Vec<u8>,
    pub header: Header,
    pub records: Vec<Record>,
    pub palmdoc: PalmDocHeader,
    pub mobi: MobiHeader,
    pub exth: ExtHeader,
}

Structure that holds parsed ebook information and contents

Fields

contents: Vec<u8>header: Headerrecords: Vec<Record>palmdoc: PalmDocHeadermobi: MobiHeaderexth: ExtHeader

Methods

impl Mobi[src]

pub fn init<P: AsRef<Path>>(file_path: P) -> Result<Mobi, Error>[src]

Construct a Mobi object from passed file path Returns std::io::Error if there is a problem with the provided path

pub fn author(&self) -> Option<&String>[src]

Returns author record if such exists

pub fn publisher(&self) -> Option<&String>[src]

Returns publisher record if such exists

pub fn description(&self) -> Option<&String>[src]

Returns description record if such exists

pub fn isbn(&self) -> Option<&String>[src]

Returns isbn record if such exists

pub fn publish_date(&self) -> Option<&String>[src]

Returns publish_date record if such exists

pub fn contributor(&self) -> Option<&String>[src]

Returns contributor record if such exists

pub fn title(&self) -> Option<&String>[src]

Returns title record if such exists

pub fn text_encoding(&self) -> Option<String>[src]

Returns text encoding used in ebook

pub fn mobi_type(&self) -> Option<String>[src]

Returns type of this ebook

pub fn language(&self) -> Option<String>[src]

Returns language of the ebook

pub fn created_datetime(&self) -> NaiveDateTime[src]

Returns creation datetime

pub fn mod_datetime(&self) -> NaiveDateTime[src]

Returns modification datetime

Trait Implementations

impl Display for Mobi[src]

impl Debug for Mobi[src]

Auto Trait Implementations

impl Unpin for Mobi

impl Sync for Mobi

impl Send for Mobi

impl UnwindSafe for Mobi

impl RefUnwindSafe for Mobi

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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