[][src]Struct mime_detective::MimeDetective

pub struct MimeDetective { /* fields omitted */ }

To detect the MimeType/ContentType using the magic library.

Methods

impl MimeDetective
[src]

pub fn new() -> Result<MimeDetective, DetectiveError>
[src]

Initialize detective with magic database from /usr/share/misc/magic.mgc.

Requires system to have libmagic installed.

pub fn load_databases<P: AsRef<Path>>(
    path: &[P]
) -> Result<MimeDetective, DetectiveError>
[src]

Initialize detective with magic databases available at the provided path.

Requires system to have libmagic installed.

pub fn detect_filepath<P: AsRef<Path>>(
    &self,
    filename: P
) -> Result<Mime, DetectiveError>
[src]

Detect Mime of a filepath.

pub fn detect_file(&self, file: &mut File) -> Result<Mime, DetectiveError>
[src]

Detect Mime of a file.

pub fn detect_buffer(&self, buffer: &[u8]) -> Result<Mime, DetectiveError>
[src]

Detect Mime of a buffer.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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