[][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 a default magic database.

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> 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.