pub fn is_book(buf: &[u8]) -> bool
Determines whether a buffer is a book type.
use std::fs; assert!(infer::is_book(&fs::read("testdata/sample.epub").unwrap()));