[][src]Struct mobi::Mobi

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

Structure that holds parsed ebook information and contents

Fields

content: Vec<u8>header: Headerpalmdoc: PalmDocHeadermobi: MobiHeaderexth: ExtHeaderrecords: Vec<Record>

Implementations

impl Mobi[src]

pub fn new<B: AsRef<Vec<u8>>>(bytes: B) -> Result<Mobi>[src]

Construct a Mobi object from a slice

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

Construct a Mobi object from passed file path

pub fn from_read<R: Read>(reader: R) -> Result<Mobi>[src]

Construct a Mobi object from an object that implements a Read trait

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) -> TextEncoding[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 compression(&self) -> Option<String>[src]

Returns compression method used on this file

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

Returns encryption method used on this file

pub fn content_as_string(&self) -> String[src]

Returns the whole content as String

pub fn last_index(&self) -> usize[src]

Returns last readable index of the book

pub fn content_slice(&self, b: usize, e: usize) -> Option<String>[src]

Returns a slice of the content where b is beginning index and e is ending index. Use last_index function to find out the last readable index

Trait Implementations

impl Debug for Mobi[src]

impl Default for Mobi[src]

Auto Trait Implementations

impl RefUnwindSafe for Mobi

impl Send for Mobi

impl Sync for Mobi

impl Unpin for Mobi

impl UnwindSafe for Mobi

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.