Function infer::is_book[][src]

pub fn is_book(buf: &[u8]) -> bool
Expand description

Determines whether a buffer is a book type.

Examples

use std::fs;
assert!(infer::is_book(&fs::read("testdata/sample.epub").unwrap()));